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

Provides data for the Navigating event.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

C#
public class RadialMenuNavigatingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsRadialMenuNavigatingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

Initializes a new instance of the RadialMenuNavigatingEventArgs class.

C#
public RadialMenuNavigatingEventArgs(bool isNavigatingBack, RadRadialMenuItem menuItemSource, RadRadialMenuItem menuItemTarget, bool autoSizeMenuItems)
Parameters:isNavigatingBackbool

Indicates whether the navigation is back.

menuItemSourceRadRadialMenuItem

The menu item from which the navigation started.

menuItemTargetRadRadialMenuItem

The menu item to which the user navigated.

autoSizeMenuItemsbool

Indicates whether the menu items of the level the user navigates to are auto-sized.

Properties

Gets or sets whether the level to which the user is navigating has its segments auto-sized.

C#
public bool AutoSizeMenuItems { get; set; }

Gets whether the navigation is backwards through the back button.

C#
public bool IsNavigatingBack { get; }

Gets the menu item from which the navigation started if there is one.

C#
public RadRadialMenuItem MenuItemSource { get; }

Gets the menu item to which the user is trying to navigate to.

C#
public RadRadialMenuItem MenuItemTarget { get; }