Abstract base class for all navigation items in the RadNavigationView control.
Definition
Namespace:Telerik.Maui.Controls.NavigationView
Assembly:Telerik.Maui.Controls.dll
Syntax:
public abstract class NavigationViewItemBase : BindableObject
Inheritance: objectNavigationViewItemBase
Derived Classes:
Constructors
protected NavigationViewItemBase()
Fields
ControlTemplateProperty
BindableProperty
Identifies the ControlTemplate property.
public static readonly BindableProperty ControlTemplateProperty
IsEnabledProperty
BindableProperty
Identifies the IsEnabled property.
public static readonly BindableProperty IsEnabledProperty
IsVisibleProperty
BindableProperty
Identifies the IsVisible property.
public static readonly BindableProperty IsVisibleProperty
PositionProperty
BindableProperty
Identifies the Position property.
public static readonly BindableProperty PositionProperty
StyleProperty
BindableProperty
Identifies the Style property.
public static readonly BindableProperty StyleProperty
Properties
ControlTemplate
ControlTemplate
Gets or sets the ControlTemplate of the navigation item view. The target type of this ControlTemplate is NavigationViewItemView.
public ControlTemplate ControlTemplate { get; set; }
Gets or sets a value indicating whether the navigation item is enabled.
public bool IsEnabled { get; set; }
Gets or sets a value indicating whether the navigation item is visible.
public bool IsVisible { get; set; }
Specifies the position of a navigation item in the NavigationViewPane control. For more information see the NavigationViewItemPosition type.
public NavigationViewItemPosition Position { get; set; }
Style
Style
Gets or sets the Style of the navigation item view. The target type of this Style is NavigationViewItemView.
public Style Style { get; set; }