//
// System.Windows.Forms.StatusBarPanelClickEventHandler.cs
//
// Authors:
// Jaak Simm (jaaksimm@firm.ee)
// Dennis Hayes (dennish@Raytek.com)
//
// (C) 2002 Ximian, Inc. http://www.ximian.com
//
namespace System.Windows.Forms{
/// <summary>
/// Represents the method that will handle the PanelClick event of a StatusBar.
/// </summary>
//[Serializable]
public delegate void StatusBarPanelClickEventHandler(object sender, StatusBarPanelClickEventArgs e);
}
|