New to Telerik UI for WPFStart a free 30-day trial

Represents the event arguments for the TileStateChanged event in the TileView control.

Definition

Namespace:Telerik.Windows.Controls.TileView

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

C#
public class TileStateChangedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsTileStateChangedEventArgs

Constructors

Initializes a new instance of the TileStateChangedEventArgs class.

C#
public TileStateChangedEventArgs()

Initializes a new instance of the TileStateChangedEventArgs class.

C#
public TileStateChangedEventArgs(RoutedEvent routedEvent, object source, TileViewItemState tileState, TileViewItemState oldState)
Parameters:routedEventRoutedEvent

The routed event identifier for this instance of the RoutedEventArgs class.

sourceobject

An alternate source that will be reported when the event is handled. This pre-populates the Source property.

tileStateTileViewItemState

State of the tile.

oldStateTileViewItemState

The old state.

Properties

Gets or sets the old state of the tile.

C#
public TileViewItemState OldTileState { get; }

Gets the state of the tile.

C#
public TileViewItemState TileState { get; }