Wimark.Controls Class Library  

StatusBar.PanelClick Event

Occurs when a StatusBarPanel object on a StatusBar control is clicked.

[Visual Basic]
Public Event PanelClick As StatusBarPanelClickEventHandler 
[C#]
public event StatusBarPanelClickEventHandler PanelClick;
[C++]
public: __event StatusBarPanelClickEventHandler* PanelClick;

Event Data

The event handler receives an argument of type StatusBarPanelClickEventArgs containing data related to this event. The following StatusBarPanelClickEventArgs property provides information specific to this event.

Property Description
Button Gets which mouse button was pressed.
Clicks Gets the number of times the mouse button was pressed and released.
Delta Gets a signed count of the number of detents the mouse wheel has rotated. A detent is one notch of the mouse wheel.
StatusBarPanel Gets the StatusBarPanel that was clicked.
X Gets the x-coordinate of a mouse click.
Y Gets the y-coordinate of a mouse click.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows .NET Server family

See Also

StatusBar Class | StatusBar Members | Wimark.Controls Namespace | StatusBarPanel