728x90 AdSpace

Latest News
Friday, April 20, 2018

Lập Trình Trực Quan- Bài 3: Thiết Kế Dao Diện Trên Và In ra lời chào


Đề : Thiết kế Giao Diện Với Yêu Cầu Sau:
Bài Tập C#   Console
Bài Tập Windows Forms
     

Khi nhấn vào Show xuất hiện hộp thoại
Khi nhấn vào Exit thoát khỏi chương trình

Code xử lý:

public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void SHOW_Click(object sender, EventArgs e)
        {
            if (this.ten.Text == "")
                MessageBox.Show("bạn chưa nhập tên", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            else
                MessageBox.Show("chào bạn" + ten.Text, "hello", MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk);
           
        }

        private void Exit_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}


  • Blogger Comments
  • Facebook Comments

0 comments:

Post a Comment

Item Reviewed: Lập Trình Trực Quan- Bài 3: Thiết Kế Dao Diện Trên Và In ra lời chào Rating: 5 Reviewed By: Genm