//click event in DataGridView //event add private void but_Add_Click(object sender, EventArgs e) { common.Constants.choose = 1; view.FormAddKey fr = new view.FormAddKey(); fr.MdiParent = this.MdiParent; fr.Show(); }
private void but_Edit_Click(object sender, EventArgs e) { if (lblYouChoose.Text.Equals("") || common.Constants.id.Equals("")) { MessageBox.Show("Bạn chưa chọn dòng để chỉnh sửa. Vui lòng chọn lại: "); } else { edit = 1; common.Constants.choose = 2; lblYouChoose.Text = "Bạn chọn dòng: "; view.FormAddKey fr = new view.FormAddKey(); fr.MdiParent = this.MdiParent; but_Edit.Enabled = false; but_Delete.Enabled = false; fr.Show(); } }