| 123456789101112131415161718 |
- //
- // System.Windows.Forms.ScrollEventHandler.cs
- //
- // Authors:
- // Philip Van Hoof ([email protected])
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- namespace System.Windows.Forms {
- /// <summary>
- /// Represents the method that handles the Scroll
- /// event of a ScrollBar, TrackBar, or DataGrid.
- /// </summary>
- [Serializable]
- public delegate void ScrollEventHandler(object sender, ScrollEventArgs e);
- }
|