Class Tile
Visually represents an item in a RadTileList control.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
[TelerikToolboxCategory("Navigation")]
public class Tile : ContentControl
Constructors
Tile()
Fields
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
|
IsSelectedProperty
Identifies the IsSelected dependency property.
Declaration
public static readonly DependencyProperty IsSelectedProperty
Field Value
System.Windows.DependencyProperty
|
TileTypeProperty
Identifies the TileTypeProperty property.
Declaration
public static readonly DependencyProperty TileTypeProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Command
Gets or sets the command for a Tile.
Declaration
public ICommand Command { get; set; }
Property Value
System.Windows.Input.ICommand
The command. |
CommandParameter
Gets or sets the command parameter of the Tile.
Declaration
public object CommandParameter { get; set; }
Property Value
System.Object
The command parameter. |
CommandTarget
Gets or sets the command target of the Tile when using routed command.
Declaration
public UIElement CommandTarget { get; set; }
Property Value
System.Windows.UIElement
The command target. |
DisplayIndex
Gets or sets the display index.
Declaration
public Nullable<int> DisplayIndex { get; set; }
Property Value
System.Nullable<System.Int32>
|
Group
Gets the Group the tile belongs to.
Declaration
public TileGroup Group { get; }
Property Value
TileGroup
|
IsMouseOver
Gets or sets a value indicating whether this instance is mouse over.
Declaration
public bool IsMouseOver { get; set; }
Property Value
System.Boolean
|
IsSelected
Gets or sets a value that indicates whether a Tile is selected. This is a dependency property.
Declaration
public bool IsSelected { get; set; }
Property Value
System.Boolean
|
TileType
Gets or sets the tile type.
Declaration
public TileType TileType { get; set; }
Property Value
TileType
|
Methods
ChangeVisualState(Boolean)
Changes the visual state.
Declaration
protected virtual void ChangeVisualState(bool useTransitions)
Parameters
System.Boolean
useTransitions
If set to |
GoToState(Boolean, String[])
Updates the visual state.
Declaration
protected void GoToState(bool useTransitions, params string[] stateNames)
Parameters
System.Boolean
useTransitions
|
System.String[]
stateNames
|
OnApplyTemplate()
Declaration
public override void OnApplyTemplate()
OnContentChanged(Object, Object)
Declaration
protected override void OnContentChanged(object oldContent, object newContent)
Parameters
System.Object
oldContent
|
System.Object
newContent
|
OnCreateAutomationPeer()
Declaration
protected override AutomationPeer OnCreateAutomationPeer()
Returns
System.Windows.Automation.Peers.AutomationPeer
|
OnIsSelectedChanged()
Called when selection is changed.
Declaration
protected virtual void OnIsSelectedChanged()
OnMouseEnter(MouseEventArgs)
Declaration
protected override void OnMouseEnter(MouseEventArgs e)
Parameters
System.Windows.Input.MouseEventArgs
e
|
OnMouseLeave(MouseEventArgs)
Declaration
protected override void OnMouseLeave(MouseEventArgs e)
Parameters
System.Windows.Input.MouseEventArgs
e
|
OnMouseLeftButtonUp(MouseButtonEventArgs)
Declaration
protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
Parameters
System.Windows.Input.MouseButtonEventArgs
e
|
OnMouseRightButtonDown(MouseButtonEventArgs)
Declaration
protected override void OnMouseRightButtonDown(MouseButtonEventArgs e)
Parameters
System.Windows.Input.MouseButtonEventArgs
e
|
OnMouseRightButtonUp(MouseButtonEventArgs)
Declaration
protected override void OnMouseRightButtonUp(MouseButtonEventArgs e)
Parameters
System.Windows.Input.MouseButtonEventArgs
e
|