New to Telerik UI for .NET MAUIStart a free 30-day trial

Abstract base class for all navigation items in the RadNavigationView control.

Definition

Namespace:Telerik.Maui.Controls.NavigationView

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public abstract class NavigationViewItemBase : BindableObject

Inheritance: objectNavigationViewItemBase

Derived Classes: NavigationViewItem

Constructors

C#
protected NavigationViewItemBase()

Fields

ControlTemplateProperty

BindableProperty

Identifies the ControlTemplate property.

C#
public static readonly BindableProperty ControlTemplateProperty

IsEnabledProperty

BindableProperty

Identifies the IsEnabled property.

C#
public static readonly BindableProperty IsEnabledProperty

IsVisibleProperty

BindableProperty

Identifies the IsVisible property.

C#
public static readonly BindableProperty IsVisibleProperty

PositionProperty

BindableProperty

Identifies the Position property.

C#
public static readonly BindableProperty PositionProperty

StyleProperty

BindableProperty

Identifies the Style property.

C#
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.

C#
public ControlTemplate ControlTemplate { get; set; }

Gets or sets a value indicating whether the navigation item is enabled.

C#
public bool IsEnabled { get; set; }

Gets or sets a value indicating whether the navigation item is visible.

C#
public bool IsVisible { get; set; }

Specifies the position of a navigation item in the NavigationViewPane control. For more information see the NavigationViewItemPosition type.

C#
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.

C#
public Style Style { get; set; }