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