Class RadRibbonBackstageItem
Represents a ribbonView backstage item control.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.RibbonView.dll
Syntax
[TelerikToolboxCategory("Navigation")]
public class RadRibbonBackstageItem : RadTabItem, ISelectable, IRadTabItem
Constructors
RadRibbonBackstageItem()
Initializes a new instance of the RadRibbonBackstageItem class.
Declaration
public RadRibbonBackstageItem()
Fields
ClickEvent
Identifies the Click event.
Declaration
public static readonly RoutedEvent ClickEvent
Field Value
RoutedEvent
|
CloseOnClickProperty
Identifies the CloseOnClick property.
Declaration
public static readonly DependencyProperty CloseOnClickProperty
Field Value
System.Windows.DependencyProperty
|
CommandParameterProperty
Identifies the CommandParameter dependency property.
Declaration
public static readonly DependencyProperty CommandParameterProperty
Field Value
System.Windows.DependencyProperty
|
CommandProperty
Identifies the Command dependency property.
Declaration
public static readonly DependencyProperty CommandProperty
Field Value
System.Windows.DependencyProperty
|
CommandTargetProperty
Identifies the CommandTarget dependency property.
Declaration
public static readonly DependencyProperty CommandTargetProperty
Field Value
System.Windows.DependencyProperty
|
IconProperty
Identifies the Icon property.
Declaration
public static readonly DependencyProperty IconProperty
Field Value
System.Windows.DependencyProperty
|
IsDefaultProperty
Identifies the IsDefault property.
Declaration
public static readonly DependencyProperty IsDefaultProperty
Field Value
System.Windows.DependencyProperty
|
IsGroupSeparatorProperty
Identifies the IsGroupSeparator property.
Declaration
public static readonly DependencyProperty IsGroupSeparatorProperty
Field Value
System.Windows.DependencyProperty
|
IsSelectableProperty
Identifies the IsSelectable property.
Declaration
public static readonly DependencyProperty IsSelectableProperty
Field Value
System.Windows.DependencyProperty
|
Properties
BottomTemplate
This property does not apply to BackstageItem.
Declaration
public override ControlTemplate BottomTemplate { get; set; }
Property Value
System.Windows.Controls.ControlTemplate
|
Overrides
CloseOnClick
Gets or sets if parent backstage should close on click of the item.
Declaration
public bool CloseOnClick { get; set; }
Property Value
System.Boolean
|
Command
Gets or sets the command that will be executed when the command source is invoked.
Declaration
public ICommand Command { get; set; }
Property Value
System.Windows.Input.ICommand
|
CommandParameter
Represents a user defined data value that can be passed to the command when it is executed.
Declaration
public object CommandParameter { get; set; }
Property Value
System.Object
|
CommandTarget
The object that the command is being executed on.
Declaration
public UIElement CommandTarget { get; set; }
Property Value
System.Windows.UIElement
|
Icon
Gets or sets the image source.
Declaration
public ImageSource Icon { get; set; }
Property Value
System.Windows.Media.ImageSource
|
IsBreak
This property does not apply to BackstageItem.
Declaration
public override bool IsBreak { get; set; }
Property Value
System.Boolean
|
Overrides
IsDefault
Gets or sets if the item should be default.
Declaration
public bool IsDefault { get; set; }
Property Value
System.Boolean
|
IsGroupSeparator
Gets or sets if the item should be group separator.
Declaration
public bool IsGroupSeparator { get; set; }
Property Value
System.Boolean
|
IsSelectable
Gets or sets if the item should be selectable.
Declaration
public bool IsSelectable { get; set; }
Property Value
System.Boolean
|
LeftTemplate
This property does not apply to BackstageItem.
Declaration
public override ControlTemplate LeftTemplate { get; set; }
Property Value
System.Windows.Controls.ControlTemplate
|
Overrides
RightTemplate
This property does not apply to BackstageItem.
Declaration
public override ControlTemplate RightTemplate { get; set; }
Property Value
System.Windows.Controls.ControlTemplate
|
Overrides
TopTemplate
This property does not apply to BackstageItem.
Declaration
public override ControlTemplate TopTemplate { get; set; }
Property Value
System.Windows.Controls.ControlTemplate
|
Overrides
Methods
ChangeVisualState(Boolean)
Updates the visual state of the control.
Declaration
protected override void ChangeVisualState(bool useTransitions)
Parameters
System.Boolean
useTransitions
Indicates whether transitions should be used. |
Overrides
OnApplyTemplate()
When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass) call System.Windows.Controls.Control.ApplyTemplate.
Declaration
public override void OnApplyTemplate()
Overrides
OnCreateAutomationPeer()
Creates a BackstageItemAutomationPeer.
Declaration
protected override AutomationPeer OnCreateAutomationPeer()
Returns
System.Windows.Automation.Peers.AutomationPeer
A new instance of the BackstageItemAutomationPeer. |
Overrides
OnKeyDown(KeyEventArgs)
Called before the System.Windows.UIElement.KeyDown event occurs.
Declaration
protected override void OnKeyDown(KeyEventArgs e)
Parameters
System.Windows.Input.KeyEventArgs
e
The data for the event. |
Overrides
Events
Click
Gets or sets the click event.
Declaration
public event RoutedEventHandler Click
Event Type
System.Windows.RoutedEventHandler
|