This question is locked. New answers and comments are not allowed.
I have a databound tileview with a custom itemcontainerstyle (contenttemplate):
How can I subscribe to events from the individual TileViewItems in this scenario; for example MouseEnter/MouseLeave?
<telerik:RadTileView Grid.Row="1" x:Name="TileView1" ItemContainerStyle="{StaticResource RadTileViewItemStyle1}" IsSelectionEnabled="True" SelectionMode="Single" MaximizeMode="Zero" Loaded="TileView1_Loaded" PreviewTileSelectionChanged="TileView1_PreviewTileSelectionChanged"> <telerik:RadTileView.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding name}"/> </DataTemplate> </telerik:RadTileView.ItemTemplate> <telerik:RadTileView.ContentTemplate> <DataTemplate> <TextBlock Text="{Binding description}"/> </DataTemplate> </telerik:RadTileView.ContentTemplate></telerik:RadTileView>How can I subscribe to events from the individual TileViewItems in this scenario; for example MouseEnter/MouseLeave?