Picturebox trong lập trình C# Winform
Lập trình Winform cơ bản

Danh sách bài học
Picturebox trong lập trình C# Winform
Dẫn nhập
Sức mạnh của hệ điều hành Window là không thể chối cãi. Và để tạo nên sức mạnh đó không thể thiếu những ứng dụng mạnh mẽ. Vậy để tạo ra những ứng dụng đó, người lập trình viên cần học cái gì?
Cùng nhau tìm hiểu serial Lập trình Winform.
Nội dung
Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ImageGUI
{
public partial class Form1 : Form
{
string extention = ".png";
public Form1()
{
InitializeComponent();
cbImage.SelectedValueChanged += cbImage_SelectedValueChanged;
LoadImageName();
}
void cbImage_SelectedValueChanged(object sender, EventArgs e)
{
ComboBox cb = sender as ComboBox;
if (cb.SelectedValue != null)
{
Bitmap bm = new Bitmap(Application.StartupPath + "\\Resources\\" + cb.SelectedValue.ToString() + extention);
pcbImage.Image = bm;
}
}
void LoadImageName()
{
List<string> ListImage = new List<string>() { "1", "2", "3"};
cbImage.DataSource = ListImage;
}
}
}
Form1.Designer.cs
namespace ImageGUI
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.pcbImage = new System.Windows.Forms.PictureBox();
this.cbImage = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.pcbImage)).BeginInit();
this.SuspendLayout();
//
// pcbImage
//
this.pcbImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.pcbImage.Location = new System.Drawing.Point(139, 12);
this.pcbImage.Name = "pcbImage";
this.pcbImage.Size = new System.Drawing.Size(223, 226);
this.pcbImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pcbImage.TabIndex = 0;
this.pcbImage.TabStop = false;
//
// cbImage
//
this.cbImage.FormattingEnabled = true;
this.cbImage.Location = new System.Drawing.Point(12, 12);
this.cbImage.Name = "cbImage";
this.cbImage.Size = new System.Drawing.Size(121, 21);
this.cbImage.TabIndex = 1;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(374, 261);
this.Controls.Add(this.cbImage);
this.Controls.Add(this.pcbImage);
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.pcbImage)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox pcbImage;
private System.Windows.Forms.ComboBox cbImage;
}
}
Kết luận
Bài sau chúng ta sẽ cùng tìm hiểu về ListView trong lập trình C# Winform.
Cảm ơn các bạn đã theo dõi bài viết. Hãy để lại bình luận hoặc góp ý của mình để phát triển bài viết tốt hơn. Đừng quên “Luyện tập – Thử thách – Không ngại khó”.
Tải xuống
Tài liệu
Nhằm phục vụ mục đích học tập Offline của cộng đồng, Kteam hỗ trợ tính năng lưu trữ nội dung bài học Picturebox trong lập trình C# Winform dưới dạng file PDF trong link bên dưới.
Ngoài ra, bạn cũng có thể tìm thấy các tài liệu được đóng góp từ cộng đồng ở mục TÀI LIỆU trên thư viện Howkteam.com
Đừng quên like và share để ủng hộ Kteam và tác giả nhé!

Thảo luận
Nếu bạn có bất kỳ khó khăn hay thắc mắc gì về khóa học, đừng ngần ngại đặt câu hỏi trong phần bên dưới hoặc trong mục HỎI & ĐÁP trên thư viện Howkteam.com để nhận được sự hỗ trợ từ cộng đồng.
Nội dung bài viết
Tác giả/Dịch giả
Khóa học
Lập trình Winform cơ bản
A ơi, e hỏi chút ạ
VD: em có 1 list PictureBox có Name lần lượt là picture1, picture2, picture3
Em muốn viết vòng for theo name để lấy để gán ảnh vào từng name trên, thì k biết có hàm gì hỗ trợ không ạ.
Hiện e thấy với TextBox, Label,... thì có thể dùng: Controls[<<Name của thuộc tính>>] thì có thể hiểu nó đang là control nào, nhưng với thằng PictureBox thì luôn là null
A có thể support giùm e k ạ?
"Bitmap bm = new Bitmap(Application.StartupPath + "\\Resources\\" + cb.SelectedValue.ToString() + extention"
Anh ơi anh giải thích lại giúp em đoạn code này được không ạ. Em không hiểu "extention"
Cho em hoir chút ạ.Nếu em muốn mỗi khi kick chuột vào nút button thì nó tự sinh ra 1 picturebox mới thì làm thế nào ạ?