昨天我遇到了一些问题,但我会更好地解释它
这是代码
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);
}
好吧,我真的不知道如何获得最近添加的名称,再次重新加载时在网格中被选中
有什么帮助吗?