<telerik:RadTransitionControl x:Name="transitionRight" Grid.RowSpan="3" Grid.Column ="1" >
<telerik:RadTransitionControl.Transition >
<effects:SlideAndZoomTransition SlideDirection ="RightToLeft"/>
</telerik:RadTransitionControl.Transition >
</telerik:RadTransitionControl >
Format Code Block(
<
UserControl x:Class="AOS.UI.Windows.Controls.Widget.acWidgets"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:VMCommanding="clr-namespace:VMCommanding"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:vm="clr-namespace:AOS.UI.Windows.Controls.Widget.ViewModel"
Height="300" Width="300"
xmlns:Core="clr-namespace:AOS.UI.Windows.Controls.Core;assembly=AOS.UI.Windows.Controls.Core"
VMCommanding:CommandSinkBinding.CommandSink="{Binding}">
<UserControl.CommandBindings>
<VMCommanding:CommandSinkBinding Command="vm:WidgetViewModel.NavigateItemCommand" />
</UserControl.CommandBindings>
<UserControl.Resources>
<HierarchicalDataTemplate x:Key="NavigationTemplate"
ItemsSource="{Binding Path=WidgetList}">
<Grid Margin="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="16" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Image Grid.Column="0" Source="{Binding Path=Icon_Name}"></Image>
<Core:CommandTextBlock Grid.Column="1" Margin="1"
Text="{Binding Path=Description}"
Command="vm:WidgetViewModel.NavigateItemCommand"
CommandParameter="{Binding}"/>
</Grid>
</HierarchicalDataTemplate>
</UserControl.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="55" />
<RowDefinition Height="*" />
<RowDefinition Height="30" />
</Grid.RowDefinitions>
<telerik:RadTreeView Grid.Row="2" ItemsSource="{Binding WidgetList}" ItemTemplate="{StaticResource NavigationTemplate}" />
</Grid>
</
UserControl>
)



<telerik:RadTileViewItem></telerik:RadTileViewItem>
<telerik:RadTileViewItem></telerik:RadTileViewItem>
<telerik:RadTileViewItem></telerik:RadTileViewItem>
<telerik:RadTileViewItem></telerik:RadTileViewItem>
<telerik:RadTileViewItem></telerik:RadTileViewItem>
<telerik:RadTileViewItem></telerik:RadTileViewItem>
</telerik:RadTileView>
However , when I bind the tileview to using itemsource to a List of items like shown below, I am unable to maximize, minimize the tiles. What am I doing wrong ?
<telerik:RadTileView Name="radTileView1" ItemsSource="{Binding}"
MinimizedRowHeight="200" MinimizedColumnWidth ="200" >
</telerik:RadTileView>
Note: The user control that houses the tileview control has it's data context set to the list .The tileview does show the correct number of tiles corresponding to the number of items in the list, but does not let me maximize or minimize.