New to Telerik UI for WPF? Download free 30-day trial

Events

This article lists the events specific for RadNavigationView.

RadNavigationView Events

RadNavigationView inherits the Selector class. Almost all of the exposed events are inherited from it. Here are the additional events that are exposed:

  • ItemClick: Occurs each time an item in the RadNavigationView gets clicked. The event handler receives two arguments:

    • The sender argument contains the RadNavigationView. This argument is of type object, but can be cast to the RadNavigationView type.

    • A RoutedEventArgs object.

    The ItemClick event is fired after the Click event of the clicked RadNavigationViewItem.

  • PaneOpened: Occurs when the RadNavigationView pane is opened. The event handler receives two arguments:

    • The sender argument contains the RadNavigationView. This argument is of type object, but can be cast to the RadNavigationView type.

    • A RoutedEventArgs object.

  • PaneClosed: Occurs when the RadNavigationView pane is closed. The event handler receives two arguments:

    • The sender argument contains the RadNavigationView. This argument is of type object, but can be cast to the RadNavigationView type.

    • A RoutedEventArgs object.

  • SelectionChanged: Occurs when the selected RadNavigationViewItem gets changed. The event arguments are of type System.Windows.Controls.SelectionChangedEventArgs which can be used to get the new and the old selection via the AddedItems and RemovedItems properties.

  • ItemExpanded: Occurs when a RadNavigationViewItem gets expanded. The event arguments are of type RoutedEventArgs. The expanded item can be accessed via the OriginalSource property of the arguments.

  • ItemCollapsed: Occurs when a RadNavigationViewItem gets collapsed. The event arguments are of type RoutedEventArgs. The collapsed item can be accessed via the OriginalSource property of the arguments.

RadNavigationViewItem Events

  • Expanded: Occurs when the corresponding RadNavigationViewItem gets expanded. The event arguments are of type RoutedEventArgs.

  • Collapsed: Occurs when the corresponding RadNavigationViewItem gets collapsed. The event arguments are of type RoutedEventArgs.

See Also

In this article