All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" xmlns:mvvmlight="http://www.galasoft.ch/mvvmlight"
<telerik:RadTileView Name="rtvViews" ItemsSource="{Binding ViewItems,Mode=TwoWay}" Grid.Row="1"> <i:Interaction.Triggers> <i:EventTrigger EventName="TilesPositionChanged"> <mvvmlight:EventToCommand Command="{Binding TileStateCommand,Mode=TwoWay}" MustToggleIsEnabledValue="True" PassEventArgsToCommand="True"/> </i:EventTrigger> </i:Interaction.Triggers> </telerik:RadTileView>
TileStateCommand = new DelegateCommand(ChangedStateAction);
private void ChangedStateAction(object args) { ... your code }