| 123456789101112131415161718 |
- //
- // System.Windows.Forms.QueryContinueDragEventHandler.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 QueryContinueDrag event of a Control.
- /// </summary>
- //[Serializable]
- public delegate void QueryContinueDragEventHandler(object sender, QueryContinueDragEventArgs e);
- }
|