This question is locked. New answers and comments are not allowed.
I intially wanted to design my application to allow users to choose a display theme. However when selecting themes i noticed alot of panes would lose content, or it would just randomly crash when switch themes.
SO instead i just set the default theme and dont let them change. However i have found that it randomly loses themes whenever i pin/unpin one of the panes
Here is my combobox which i have just set to a default theme
SO instead i just set the default theme and dont let them change. However i have found that it randomly loses themes whenever i pin/unpin one of the panes
Here is my combobox which i have just set to a default theme
<telerik:RadComboBox x:Name="comboTheme" Visibility="Collapsed" SelectionChanged="comboTheme_SelectionChanged" SelectedIndex="7" HorizontalContentAlignment="Center" Width="150">
<telerik:Office_BlackTheme/>
<telerik:Office_BlueTheme/>
<telerik:Office_SilverTheme/>
<telerik:VistaTheme/>
<telerik:Windows7Theme/>
<telerik:SummerTheme/>
<telerik:MetroTheme/>
<telerik:Expression_DarkTheme/>
</telerik:RadComboBox>
and then throughout my xaml i have the following
telerik:StyleManager.Theme="{Binding ElementName=comboTheme,Path=SelectedItem,Mode=TwoWay}"
One of my panes by default is docked but unpinned. when i pin it or move it/dock it all of my ui suddently loses its theme and defaults back to office black.
Any idea why ?