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)
The routed event identifier for this instance of the RoutedEventArgs class.
sourceobjectAn alternate source that will be reported when the event is handled. This pre-populates the Source property.
tileStateTileViewItemStateState of the tile.
oldStateTileViewItemStateThe 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; }