private void btnThem_Click(object sender, RoutedEventArgs e)
 {
     frmPhieuNhapKhoEdit PhieuNhapKhoEdit = new frmPhieuNhapKhoEdit();
     PhieuNhapKhoEdit.Closed += new EventHandler(PhieuNhapKhoEdit_Closed);
     PhieuNhapKhoEdit.PhieuNhapKhoEdit_Load(0);
     PhieuNhapKhoEdit.Show();
 }
 private void cmdSuaPhieuNhap_Click(object sender, RoutedEventArgs e)
 {
     HyperlinkButton cmdSuaPhieuNhap = sender as HyperlinkButton;
     int PhieuNhapID = int.Parse(cmdSuaPhieuNhap.CommandParameter.ToString());
     frmPhieuNhapKhoEdit PhieuNhapKhoEdit = new frmPhieuNhapKhoEdit();
     PhieuNhapKhoEdit.Closed += new EventHandler(PhieuNhapKhoEdit_Closed);
     PhieuNhapKhoEdit.PhieuNhapKhoEdit_Load(PhieuNhapID);
     PhieuNhapKhoEdit.Show();
 }