MouseEventHandler.cs 502 B

12345678910111213141516171819
  1. //
  2. // System.Windows.Forms.MouseEventHandler.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 the method that will handle the MouseDown, MouseUp, or MouseMove
  13. /// event of a form, control, or other component.
  14. /// </summary>
  15. //[Serializable]
  16. public delegate void MouseEventHandler(object sender, MouseEventArgs e);
  17. }