Đề : 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();
}
}
}
0 comments:
Post a Comment