This question is locked. New answers and comments are not allowed.
Hello! I use RichTextBox with HtmlDataProvider:
When NewText is null or empty RichTextBox shows blank RadDocument and the font size ComboBox shows 12:
How can I change the default font size to another value?
<documentsHtml:HtmlDataProvider x:Key="htmlDataProvider" RichTextBox="{Binding ElementName=richTextBox}" Html="{Binding Path=SelectedMessage.NewText, Mode=TwoWay}" SetupDocument="HtmlDataProvider_SetupDocument"/>When NewText is null or empty RichTextBox shows blank RadDocument and the font size ComboBox shows 12:
<telerik:RadRibbonComboBox CanAutocompleteSelectItems="False" CanKeyboardNavigationSelectItems="False" CommandParameter="{Binding SelectedItem.Tag, RelativeSource={RelativeSource Self}}" Height="21" IsEditable="False" IsReadOnly="True" OpenDropDownOnFocus="True" telerik:RadRichTextBoxRibbonUI.RichTextCommand="{Binding ChangeFontSizeCommand}" Width="45" DataContext="{Binding ElementName=richTextBox}">How can I change the default font size to another value?
