The reusable Form XObject content always resets its GraphicState color property. Instead, it should take the current GraphicState color from the content stream. This may result in wrong colors.
The character is rendered with different glyph geometry and wrong glyph width which results in overlapping text.
If you place a TextBlock in the QuickAccessToolbar and the Ofice_Black theme is applied you get black foreground on black background which makes the text unreadable. The content of the QAT must respect the theme applied to the RadRibbonView control.
When you hit the Enter key and a number simultaneously the number is removed from the Value of the RadMaskedNumericInput Workaround: Handle the KeyDown event of the RadMaskedNumericInput control, when the Enter key is pressed. private void INPUT_KeyDown(object sender, KeyEventArgs e) { if (e.Key == Key.Enter) { if (INPUT.Value.ToString().Length > 0) { RadWindow.Alert(INPUT.Value.ToString()); } e.Handled = true; } }
You could repair the invalid file using the project from the attachment.
In Expression Dark theme when you have a TextBlock inside a FluidContentControl the foreground is not updated.
When using a diagram in the theme Windows8, the all the text in the RadComboBox controls inside SettingsPaneTextControl is not showing.
Please see the attached file for example.
In a newly created empty Silverlight project, the Theme is set to Windows 8:
StyleManager.ApplicationTheme = new Windows8Theme();
Create a RadDiagram in a xaml file
<telerik:RadDiagram x:Name="diagram">
<telerik:RadDiagramTextShape Content="Test" />
<primitives:ItemInformationAdorner.AdditionalContent>
<telerik:SettingsPane Diagram="{Binding ElementName=diagram}" />
</primitives:ItemInformationAdorner.AdditionalContent>
</telerik:RadDiagram>
And the text in the RadComboBox controls inside SettingsPaneTextControl is not visible.
most other themes work fine, but Window8 is not.
I already updated to the latest Telerik Silverlight libraries.
This reproduces only if the FlipDuration property of RadBook is set to 0.
To work this around set the FlipDuration to a bigger value. For example: FlipDuration="0:0:0.001"