private void nhânViênToolStripMenuItem1_Click(object sender, EventArgs e) { FormNhanVien formNhanVien = new FormNhanVien(); formNhanVien.TopLevel = false; formNhanVien.Visible = true; formNhanVien.FormBorderStyle = FormBorderStyle.None; formNhanVien.Dock = DockStyle.Fill; tabCtlChinh.TabPages.Add("Nhân viên"); tabCtlChinh.TabPages[tabCtlChinh.TabPages.Count - 1].Controls.Add(formNhanVien); tabCtlChinh.SelectedIndex = tabCtlChinh.TabPages.Count - 1; }
private void btnThemNhanVien_Click(object sender, EventArgs e) { FormNhanVien diaglogNhanVien = new FormNhanVien(); diaglogNhanVien.StartPosition = FormStartPosition.CenterScreen; if (diaglogNhanVien.ShowDialog(this) == DialogResult.Yes) { } else { cbNhanVien.DataSource = nhanVienBLL.LayDanhSachNhanVien(); } }