Beispiel #1
0
        public Fix(DataGridViewRow information, QuanLy quanLy)
        {
            InitializeComponent();
            this.quanLy      = quanLy;
            this.information = information;

            txt_mssv.Text = this.information.Cells["MSSV"].Value.ToString();
            txt_name.Text = this.information.Cells["NAME"].Value.ToString();
            if (this.information.Cells["GENDER"].Value.ToString().Equals("Nam"))
            {
                radioMale.Checked = true;
            }
            else
            {
                radio_female.Checked = true;
            }
        }
Beispiel #2
0
 public AddStudent(List <Class> listClass, QuanLy quanLy)
 {
     InitializeComponent();
     this.quanLy = quanLy;
     _listClass  = listClass;
 }