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

Danh sách bài học
Label 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;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace LabelGUI
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
loadLabel();
}
void loadLabel()
{
Label lb = new Label();
this.Controls.Add(lb);
for (int i = 0; i < 10; i++)
{
lb.Text = "HowKteam.com " + i;
}
}
private void Form1_Click(object sender, EventArgs e)
{
}
}
}
Form1.Designer.cs
namespace LabelGUI
{
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.SuspendLayout();
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(371, 257);
this.Name = "Form1";
this.Text = "Form1";
this.Click += new System.EventHandler(this.Form1_Click);
this.ResumeLayout(false);
}
#endregion
}
}
fSeconrd.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 LabelGUI
{
public partial class fSeconrd : Form
{
public fSeconrd()
{
InitializeComponent();
}
private void fSeconrd_Load(object sender, EventArgs e)
{
}
}
}
fSeconrd.Designer.cs
namespace LabelGUI
{
partial class fSeconrd
{
/// <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.lb2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lb2
//
this.lb2.AutoSize = true;
this.lb2.Location = new System.Drawing.Point(83, 72);
this.lb2.Name = "lb2";
this.lb2.Size = new System.Drawing.Size(35, 13);
this.lb2.TabIndex = 0;
this.lb2.Text = "label1";
//
// fSeconrd
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 261);
this.Controls.Add(this.lb2);
this.Name = "fSeconrd";
this.Text = "fSeconrd";
this.Load += new System.EventHandler(this.fSeconrd_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
public System.Windows.Forms.Label lb2;
}
}
Kết luận
Bài sau chúng ta sẽ cùng tìm hiểu về Button 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 Label 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
Đánh giá
Em chỉ học trên đây và tham khảo các tài liệu liên quan mà vẫn học tốt. E cảm ơn Kteam đã truyền cảm hứng cho em. Em cảm ơn.
Cho e hỏi tại sao e để label public mà vẫn không truy cập được ạ?
int max có 255 à nên thành ra anh để i<1000 thì nó luôn đúng vòng lặp đó không chui ra được á, em nghĩ vậy hihi!