ToolBarButtonClickEventHandler.cs 487 B

123456789101112131415161718
  1. //
  2. // System.Windows.Forms.ToolBarButtonClickEventHandler.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 ButtonClick event of a ToolBar.
  13. /// </summary>
  14. //[Serializable]
  15. public delegate void ToolBarButtonClickEventHandler(object sender, ToolBarButtonClickEventArgs e);
  16. }