UpDownEventHandler.cs 544 B

1234567891011121314151617181920
  1. //
  2. // System.Windows.Forms.UpDownEventHandler.cs
  3. //
  4. // Authors:
  5. // Jaak Simm ([email protected])
  6. // Dennis Hayes ([email protected])
  7. // Gianandrea Terzi ([email protected])
  8. //
  9. // (C) 2002 Ximian, Inc. http://www.ximian.com
  10. //
  11. namespace System.Windows.Forms {
  12. /// <summary>
  13. /// This type supports the .NET Framework infrastructure
  14. /// and is not intended to be used directly from your code.
  15. /// </summary>
  16. //[Serializable]
  17. public delegate void UpDownEventHandler(object source, UpDownEventArgs e);
  18. }