StatusBarPanelClickEventHandler.cs 491 B

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