ClassNavigationItemButton
Represents custom control that is used to navigate to the specific RadialMenuItem children.
Definition
Namespace:Telerik.UI.Xaml.Controls.Navigation.Menu
Assembly:Telerik.WinUI.Controls.dll
Syntax:
public class NavigationItemButton : RadControl
Inheritance: objectRadControlNavigationItemButton
Inherited Members
Constructors
NavigationItemButton()
Initializes a new instance of the NavigationItemButton class.
Declaration
public NavigationItemButton()
Fields
ContentGlyphProperty
Identifies the ContentGlyph dependency property.
Declaration
public static readonly DependencyProperty ContentGlyphProperty
Field Value
DependencyProperty
Properties
ContentGlyph
Gets or sets the text inside NavigationItemButton.
Declaration
public string ContentGlyph { get; set; }
Property Value
Example
<telerikPrimitives:RadRadialMenu.Resources>
<Style TargetType="telerikPrimitivesMenu:NavigationItemButton">
<Setter Property="ContentGlyph" Value="select"/>
</Style>
</telerikPrimitives:RadRadialMenu.Resources>
Methods
ApplyTemplateCore()
Called when the Framework is called. Inheritors should override this method should they have some custom template-related logic. This is done to ensure that the property is properly initialized.
ComposeVisualStateName()
Builds the current visual state for this instance.
Declaration
protected override string ComposeVisualStateName()
Returns
Overrides
OnCreateAutomationPeer()
Declaration
protected override AutomationPeer OnCreateAutomationPeer()
Returns
AutomationPeer
Overrides
OnKeyDown(KeyRoutedEventArgs)
Called before the KeyDown event occurs.
Declaration
protected override void OnKeyDown(KeyRoutedEventArgs e)
Parameters
e
KeyRoutedEventArgs
The data for the event.
OnPointerEntered(PointerRoutedEventArgs)
Called before the PointerEntered event occurs.
Declaration
protected override void OnPointerEntered(PointerRoutedEventArgs e)
Parameters
e
PointerRoutedEventArgs
Event data for the event.
OnPointerExited(PointerRoutedEventArgs)
Called before the PointerExited event occurs.
Declaration
protected override void OnPointerExited(PointerRoutedEventArgs e)
Parameters
e
PointerRoutedEventArgs
Event data for the event.
OnTemplateApplied()
Occurs when the method has been called and the template is already successfully applied.
Declaration
protected override void OnTemplateApplied()
Overrides