New to Telerik UI for WPFStart a free 30-day trial

Events

Updated on Aug 26, 2026

This topic covers the specific events exposed by the __RadPanelBar__control. The events are grouped by their general purpose.

Click Events

RadPanelBar exposes the following events when a RadPanelBarItem is clicked with the Mouse left button:

  • ItemClick – raised on MouseLeftButtonUp when a RadPanelBarItem is clicked with Mouse left button.

  • ItemDoubleClick – raised on MouseLeftButtonUp when a RadPanelBarItem is double clicked with Mouse left button. The time slot between two clicks must be less than or equal to 300ms in order to be registered as a double click.

RadPanelBarItem exposes the following events:

  • Click – raised on MouseLeftButtonUp when the item is clicked with Mouse left button.

  • DoubleClick – raised on MouseLeftButtonUp when the item is double clicked with Mouse left button. The time slot between the two clicks must be less than or equal to 300ms to register these clicks as a double click.

Click Events sequence.

Currently a successful RadPanelBarItem double click fires the following events:

  • ItemClick event of the RadPanelBar

  • DoubleClick event of the RadPanelBarItem

  • ItemDoubleClick event of the RadPanelBar

  • Click event of the RadPanelBarItem