Example #1
0
 /// <summary>
 /// Xóa hết các User cOntrol mà panel đang chứa
 /// </summary>
 public void RemovePanel()
 {
     pnFr.Controls.Clear();
     status = null;
     pbus   = null;
     tbs    = null;
     rad    = null;
 }
Example #2
0
 /// <summary>
 /// Khởi tạo giao diện Phòng ban
 /// </summary>
 /// <param name="btnClick">Phòng ban được click</param>
 private void UserPhongBan(Control btnClick)
 {
     RemovePanel();
     pbus = new PhongBanUS();
     this.pnFr.Controls.Add(pbus);
     pnMove.Top    = btnClick.Top;
     pnMove.Height = btnClick.Height;
 }