UICuesEventHandler.cs 431 B

1234567891011121314151617
  1. //
  2. // System.Windows.Forms.UICuesEventHandler.cs
  3. //
  4. // Authors:
  5. // Jaak Simm ([email protected])
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002 Ximian, Inc. http://www.ximian.com
  9. //
  10. namespace System.Windows.Forms {
  11. /// <summary>
  12. /// Represents a method that will handle the ChangeUICues event of a Control.
  13. /// </summary>
  14. public delegate void UICuesEventHandler(object sender, UICuesEventArgs e);
  15. }