728x90 AdSpace

Latest News
Friday, April 20, 2018

Lập Trình Trực Quan- Bài 2: Tên,Năm Sinh,Sở Thích

Đề: Tạo khung thông tin.Trong đó nhâp họ tên,ngày tháng năm sinh và sở thích.
       Nhấn nút xem để hiển hiển thị thông tin vừa nhập xuống khung kết quả
*Bài Tập C#   Console
*Bài Tập Windows Forms
Đáp án mẫu
Code xử lý:

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

        private void button1_Click(object sender, EventArgs e)
        {
            ketqua.Text = ten.Text + "\n" + ngay.Text + "/" + thang.Text + "/" + nam.Text + "\n" + sothich.Text;

        }

        private void button2_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 2: Tên,Năm Sinh,Sở Thích Rating: 5 Reviewed By: Genm