Class
NavigationViewItem

Represents a navigation item in the RadNavigationView control.

Definition

Constructors

NavigationViewItem()

Declaration

cs-api-definition
public NavigationViewItem()

Fields

CommandParameterProperty

Identifies the CommandParameter property.

Declaration

cs-api-definition
public static readonly BindableProperty CommandParameterProperty

Field Value

BindableProperty

CommandProperty

Identifies the Command property.

Declaration

cs-api-definition
public static readonly BindableProperty CommandProperty

Field Value

BindableProperty

ContentTemplateProperty

Identifies the ContentTemplate property.

Declaration

cs-api-definition
public static readonly BindableProperty ContentTemplateProperty

Field Value

BindableProperty

ImageSourceProperty

Identifies the ImageSource property.

Declaration

cs-api-definition
public static readonly BindableProperty ImageSourceProperty

Field Value

BindableProperty

IsSelectableProperty

Identifies the IsSelectable property.

Declaration

cs-api-definition
public static readonly BindableProperty IsSelectableProperty

Field Value

BindableProperty

IsSelectedProperty

Identifies the IsSelected property.

Declaration

cs-api-definition
public static readonly BindableProperty IsSelectedProperty

Field Value

BindableProperty

TextProperty

Identifies the Text property.

Declaration

cs-api-definition
public static readonly BindableProperty TextProperty

Field Value

BindableProperty

Properties

Command

Gets or sets a command to execute when the navigation item is clicked.

Declaration

cs-api-definition
public ICommand Command { get; set; }

Property Value

ICommand

CommandParameter

Gets or sets a parameter to command which is executed when the navigation item is clicked.

Declaration

cs-api-definition
public object CommandParameter { get; set; }

Property Value

object

ContentTemplate

Gets or sets the DataTemplate used to display the content.

Declaration

cs-api-definition
public DataTemplate ContentTemplate { get; set; }

Property Value

DataTemplate

ImageSource

Gets or sets the source of the image to display in the navigation item. For more information see the ImageSource type.

Declaration

cs-api-definition
public ImageSource ImageSource { get; set; }

Property Value

ImageSource

IsSelectable

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

Declaration

cs-api-definition
public bool IsSelectable { get; set; }

Property Value

bool

IsSelected

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

Declaration

cs-api-definition
public bool IsSelected { get; set; }

Property Value

bool

Text

Gets or sets the text to display in the navigation item.

Declaration

cs-api-definition
public string Text { get; set; }

Property Value

string

Events

Clicked

Raised when the navigation item is clicked.

Declaration

cs-api-definition
public event EventHandler Clicked

Event Value

EventHandler

IsSelectedChanged

Raised when the IsSelected property has changed.

Declaration

cs-api-definition
public event EventHandler IsSelectedChanged

Event Value

EventHandler