I´m trying to set styling on RichTextBox, but no styling is applied. Telerik styling is not supported for RichTextBox?
My code example:
<Window x:Class="Richtextboxstyling.MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="MainWindow" Height="350" Width="525"> <Grid> <RichTextBox telerik:StyleManager.Theme="Office_Silver" Height="140" VerticalScrollBarVisibility="Auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" /> </Grid> </Window>