- namespace System.Windows.Forms
- {
- public class ControlEventArgs : EventArgs
- {
- public Control Control { get; }
- public ControlEventArgs(Control control)
- {
- Control = control;
- }
- }
- public delegate void ControlEventHandler(object sender, ControlEventArgs e);
- }
|