Exemple #1
0
 private void EditBtn_Click(object sender, EventArgs e)
 {
     try
     {
         string obj = String.Format("{0}|{1}|{2}|{3}|{4}|{5}|{6}", idSt.Text, nameSt.Text, numberSt.Text
                                    , _classSt.Text, boy.Checked, countrySt.Text, ageSt.Text);
         StudentVM.EditVM(obj);
     }
     catch (Exception)
     {
         MessageBox.Show("Chọn sinh viên cần sửa!");
     }
     render();
 }