Hi. I have question : When i change selected item the animation begins with the color spesified in Them. And it's not comfortable that my screen is always white in "Windows8Touch" them for example. How can i change color while transiting ?
<telerik:RadTileView
x:Name="RadTileViewMain"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Margin="5"
TileStateChangeTrigger="SingleClick"
telerik:StyleManager.Theme="Windows8Touch" Background="{Binding UISettings.BackColorBrush, NotifyOnTargetUpdated=True}" IsAutoScrollingEnabled="True" MinimizedColumnWidth="150" MinimizedRowHeight="125" MaximizeMode="One" PreservePositionWhenMaximized="True" ReorderingDuration="0:0:0.2" ResizingDuration="0:0:0.2" IsVirtualizing="True"
>
<telerik:RadFluidContentControl telerik:StyleManager.Theme="Windows8Touch" Background="{Binding UISettings.BackColorBrush, NotifyOnTargetUpdated=True}" MouseDown="RadFluidContentControl_MouseDown" TransitionDuration="0:0:0.4" ScrollViewer.CanContentScroll="True" SnapsToDevicePixels="True">
<telerik:RadFluidContentControl.Content>
<Grid Background="{Binding UISettings.BackColorBrush, NotifyOnTargetUpdated=True}" Cursor="Hand">
</Grid>
</telerik:RadFluidContentControl.Content>
<telerik:RadFluidContentControl.SmallContent >
<Grid Background="{Binding UISettings.BackColorBrush, NotifyOnTargetUpdated=True}" Cursor="Hand">
<StackPanel Orientation="Vertical" >
<Image Height="30"
Source="{Binding UISettings.ThemType, ConverterParameter=sms-settings.png, Converter={StaticResource BtnConverter}, NotifyOnSourceUpdated=True}"
HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
<Label Foreground="{Binding UISettings.ForeColorBrush, NotifyOnTargetUpdated=True}" Content="{Binding Source={StaticResource Localization_WorkMode}}" x:Name="label1" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5,0,0,0" FontSize="16" Tag="0" />
</StackPanel>
</Grid>
</telerik:RadFluidContentControl.SmallContent>
<telerik:RadFluidContentControl.LargeContent>
<Grid Background="{Binding UISettings.BackColorBrush, NotifyOnTargetUpdated=True}" >
<Label x:Name="ModeSettings"/>
</Grid>
</telerik:RadFluidContentControl.LargeContent>
</telerik:RadFluidContentControl>