J Jon Davis Jul 25, 2003 #2 Nevermind, apparently they can. /// <summary> /// When implemented, this should call SaveConfig() on the owner plop. /// </summary> void SaveConfig(); /// <summary> /// When implemented, triggered when the config has been saved. /// </summary> event EventHandler ConfigSaved; bool CloseOnSave { get; } Jon
Nevermind, apparently they can. /// <summary> /// When implemented, this should call SaveConfig() on the owner plop. /// </summary> void SaveConfig(); /// <summary> /// When implemented, triggered when the config has been saved. /// </summary> event EventHandler ConfigSaved; bool CloseOnSave { get; } Jon
H Heinrich Gantenbein Jul 25, 2003 #3 Yes, you can: event EventType EventName EventType is the delegate type for the event.