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);

    }

好吧,我真的不知道如何获得最近添加的名称,再次重新加载时在网格中被选中

有什么帮助吗?

4

1 回答 1

0

您可以创建一个变量(例如var recentlyAddedEmployer= employerManager:)来跟踪最近添加的雇主吗?然后,每当您添加新名称时,将雇主放在最近添加的雇主中

于 2013-01-09T17:22:19.840 回答