With a recent update to Q3 2012, all of our RadListBox started to show the content with FontWeight="Bold", which was not the case with previous versions. As a result, many of our screens became plain ugly.
Was it a deliberate decision to make this theme change or is it a bug?
Even more, if the data template of a RadListBoxItem has a TextBlock with FontWeight set explicitly, it is ignored and the Bold style is used.
Code example:
For this template, items are still shown with Bold.
I've checked and this behavior is specific for Windows8 & Metro themes, Windows7 still displaying items correctly.
Any workarounds to get our screens back to normal and looking good?
Thanks
Was it a deliberate decision to make this theme change or is it a bug?
Even more, if the data template of a RadListBoxItem has a TextBlock with FontWeight set explicitly, it is ignored and the Bold style is used.
Code example:
<telerik:RadListBox ItemsSource="{Binding TestItems}"> <telerik:RadListBox.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding }" FontWeight="Normal" FontSize="18" /> </DataTemplate> </telerik:RadListBox.ItemTemplate></telerik:RadListBox>For this template, items are still shown with Bold.
I've checked and this behavior is specific for Windows8 & Metro themes, Windows7 still displaying items correctly.
Any workarounds to get our screens back to normal and looking good?
Thanks