ControlEventArgs.cs 319 B

1234567891011121314
  1. namespace System.Windows.Forms
  2. {
  3. public class ControlEventArgs : EventArgs
  4. {
  5. public Control Control { get; }
  6. public ControlEventArgs(Control control)
  7. {
  8. Control = control;
  9. }
  10. }
  11. public delegate void ControlEventHandler(object sender, ControlEventArgs e);
  12. }