• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn hiển thị thông báo nhắc nhở khi đóng form C#

Admin

Well-Known Member
Staff member
Administrator
Chào các bạn, hôm nay tuoitreit.vn xin hướng dẫn các bạn code hiển thị thông báo nhắc nhở "Bạn chắc chắn muốn thoát" khi đóng form C# Windows Forms
49816434682_84c365c030_o.png

Để hiện thông báo bạn tạo (Events) sự kiện FormClosing và dán code như bên dưới
49816434542_aa23ba932b_o.png

C#:
private string thoatApp;
        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (vanBan.Text != thoatApp)
            {
                // Hiển thị thông báo
                if (MessageBox.Show("Bạn chắc chắn muốn thoát", "Code bởi Nguyễn Hữu Thắng",
                   MessageBoxButtons.YesNo) == DialogResult.No)
                {
                  // Đóng form
                    e.Cancel = true;
                }
            }
        }
Chúc bạn thành công!
Mọi sao chép vui lòng ghi rõ nguồn tuoitreit.vn
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top