Telerik version: 2018.2.820.40, Visual Studio 2017, Theme Method = StyleManager, Theme Applied = ExpressionDark, MVVM
- When a tile is disabled, all controls within it were disabled.
- When a tile is re-enabled, all RadTabItem's Header are not refreshed. It's text foreground remains white color (expect black).
- When the tile is Maximized/Minimized, the RadTabItem's Headers are refreshed.
- I couldn't reproduce this abnormality in a simple project.
<telerik:RadTileView Grid.Row="1" IsEnabled="{Binding CanAccess, Mode=OneWay}" ItemsSource="{Binding TestBoardCollection, Mode=OneWay}" Style="{StaticResource tileStyle}"/>
<telerik:RadTabControl ItemsSource="{Binding TestSiteCollection, Mode=OneWay}" IsContentPreserved="True"> <telerik:RadTabControl.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding TestSiteName, Mode=OneWay}"/> </DataTemplate> </telerik:RadTabControl.ItemTemplate> <telerik:RadTabControl.ContentTemplate> <DataTemplate> <ContentControl cal:View.Model="{Binding}" Margin="0,8,0,0"/> </DataTemplate> </telerik:RadTabControl.ContentTemplate></telerik:RadTabControl>