| 1234567891011121314151617 |
- //
- // System.Windows.Forms.UICuesEventHandler.cs
- //
- // Authors:
- // Jaak Simm ([email protected])
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- namespace System.Windows.Forms {
- /// <summary>
- /// Represents a method that will handle the ChangeUICues event of a Control.
- /// </summary>
- public delegate void UICuesEventHandler(object sender, UICuesEventArgs e);
- }
|