有一个重复的帖子,但问题没有得到解答。 我的问题是,是否在主表单中创建了新表单
var editor = new Edit(itemList, itemListBox);
editor.Show();
,您编辑的数据类型为:
Dictionary<int, Item>
项目如下:
public class Item
{
public string @Url { get; set; }
public string Name { get; set; }
public double Price { get; set; }
public Item(string @url, string name, double price)
{
this.Url = url;
this.Name = name;
this.Price = price;
}
public override string ToString()
{
return this.Name;
}
}
如何在编辑器关闭时添加处理程序,以便它可以在主窗口窗体中更新ListBox。
答案 0 :(得分:2)
为Form.Closed
事件添加事件处理程序
var editor = new Edit(itemList, itemListBox);
editor.Closed += OnEditorClosed(); // your eventhandler here
editor.Show();
或只是使用ShowDialog
代替Show
var editor = new Edit(itemList, itemListBox);
editor.ShowDialog(); // execution will stop here until editor is closed
答案 1 :(得分:0)
Form具有事件处理程序FormClosing和FormClosed。我认为使用第一个是更好的,因为在第二个中,表格的数据可能已经被处理掉了。所以:
editor.FormClosing += new FormClosingEventHandler(editor_FormClosing);
private void editor_FormClosing(object sender, FormClosingEventArgs e)
{
Edit editor = (Edit)sender;
// update data on main form here
}