有一个重复的帖子,但问题没有得到回答。我的问题是是否在主表单中创建了新表单
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。