Form trong lập trình C# Winform

Lập trình Winform cơ bản

5.0 (17 đánh giá)
Tạo bởi HowKteam Cập nhật lần cuối 21:15 03-08-2020 131.063 lượt xem 12 bình luận
Tác giả/Dịch giả: HowKteam
Học nhanh

Danh sách bài học

Form 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 WindowGUI
{
    public partial class fMain : Form
    {
        public fMain()
        {
            InitializeComponent();                  
        }
        int i = 0;
        private void fMain_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Bạn đã click lên form " + i + " lần");
            i++;
        }
    }
}

Form1.Designer.cs

namespace WindowGUI
{
    partial class fMain
    {
        /// <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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fMain));
            this.button1 = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // button1
            // 
            this.button1.Font = new System.Drawing.Font("Mistral", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.button1.Location = new System.Drawing.Point(436, 60);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(87, 23);
            this.button1.TabIndex = 0;
            this.button1.Text = "button1";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.UseWaitCursor = true;
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(199, 59);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(75, 23);
            this.button2.TabIndex = 1;
            this.button2.Text = "button2";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.UseWaitCursor = true;
            // 
            // fMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Control;
            this.BackgroundImage = global::WindowGUI.Properties.Resources.Kteam_vector_copy_2;
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
            this.ClientSize = new System.Drawing.Size(885, 487);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
            this.DoubleBuffered = true;
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "fMain";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "HowKteam.com";
            this.TransparencyKey = System.Drawing.Color.Yellow;
            this.UseWaitCursor = true;
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Click += new System.EventHandler(this.fMain_Click);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.Button button2;

    }
}

Download project

Kết luận

Bài sau chúng ta sẽ cùng tìm hiểu về Label 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 Form 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 likeshare để ủ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

Lập trình Winform cơ bản

Đánh giá

Sorami Wolf đã đánh giá 20:03 06-09-2022

nvdat02596 đã đánh giá 16:48 02-12-2021

không ngại khó

trangsiban đã đánh giá 18:22 23-11-2021

tuananh4297 đã đánh giá 01:12 13-08-2021

Nerosaro đã đánh giá 21:37 07-08-2021

tuyệt vời

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
john0209 đã bình luận 23:31 05-10-2022

xịn xỏ quá anh

Flayer đã bình luận 10:20 15-11-2020

Các khoá học của anh rất hay nhưng khổ là âm thanh của các clip nhỏ quá anh ạ. Mong anh làm clip sau tăng phần âm thanh lên để dể theo dõi bài ạ

longdophuocbao đã bình luận 19:34 23-04-2020

Ad ơi!

Em muốn đổi tên của form bằng size.
vd text:   300 x 300
Nhưng em dùng this.Text = Convert.ToString(Size); thì text nó là { Wedght =300,Height=300} 

Mong ad giúp em ạ

Quyet_K58HUST đã bình luận 18:09 24-11-2019

Ad ơi !
Nếu không public fille PDF thì ad cũng nên ghi định nghĩa và cách sử dụng của các thuộc tính properties hay event ở bài viết Web để bọn mình có thể nắm rõ ràng hơn, chứ lúc nào cx tua video thế này, cực lắm :((((

C#study đã bình luận 14:57 19-07-2019

Admin cho em hỏi là event C# ở bài nào vậy ạ. Em học basic, OPP với nâng cao mà không thấy ạ

 

Không có video.