当另一个关闭时如何使我的主WinForm更新?

时间:2013-09-09 06:57:07

标签: c# winforms

有一个重复的帖子,但问题没有得到解答。 我的问题是,是否在主表单中创建了新表单

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。

2 个答案:

答案 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
}