如果我有属性(property):
public list<String> names { get; set; }
每当将名称添加到列表时,如何为名为“onNamesChanged”的参数生成并处理自定义事件?
最佳答案
您应该 check out System.ComponentModel.BindingList,特别是ListChanged event。
关于C#自定义事件处理程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/218322/