This question is locked. New answers and comments are not allowed.
Hi
Couple of questions if possible.
1. Given the example below, how can I template the RadTileViewItem Header so the button is along side (right justified) the minimized button, so when the tile is either Large, Small or Normal the button will alway remain
2. Can you style the Tile's intrinsic header Button
Thanks
P
Couple of questions if possible.
1. Given the example below, how can I template the RadTileViewItem Header so the button is along side (right justified) the minimized button, so when the tile is either Large, Small or Normal the button will alway remain
right justified
<Grid.Resources> <DataTemplate x:Key="TileViewItemHeaderTemplate"> <StackPanel Orientation="Horizontal"> <Button Click="Button_Click_1" VerticalAlignment="Center" Content="X"></Button> <TextBlock Text="{Binding}" Margin="5" VerticalAlignment="Center" /> </StackPanel> </DataTemplate> </Grid.Resources> <telerikNavigation:RadTileView x:Name="RadTileView1"> <telerikNavigation:RadTileViewItem Header="Item1" HeaderTemplate="{StaticResource TileViewItemHeaderTemplate}" ></telerikNavigation:RadTileViewItem> <telerikNavigation:RadTileViewItem Header="Item2" HeaderTemplate="{StaticResource TileViewItemHeaderTemplate}"></telerikNavigation:RadTileViewItem> </telerikNavigation:RadTileView>2. Can you style the Tile's intrinsic header Button
Thanks
P