0
昨天我有幾個問題,但我會解釋它更好在網格中選擇最近添加的名稱
這裏是代碼
private void btnAddNewEmployer_Click(object sender, EventArgs e) {
//This first code, call a Dialog where the user adds a name a another fields
using (frmEmployersManager employerManager = new frmEmployersManager()) {
employerManager.Init(true);
employerManager.ShowDialog();
}
//When they click the Save button, the dialog close, and reloads the grid
ReloadEmployerData(ctlFilter.Filter);
}
和好,我真的不知道怎麼弄最近添加的名稱,當它重新加載時在網格中被選中
任何幫助?
如何獲取名稱和frmEmployersManager中提供的信息?將公共屬性添加到將返回文本框的值(或任何其他輸入)並將其分配給變量之前,您離開該使用塊的窗體。 – krillgar