Hi,
I simply want to change the default font of my RadRichTextBox from Times New Roman to Calibri. How do I do this?
My RTB uses a HtmlDataProvider which converts html correctly, however I'm wanting Calibri for the instance where just plain text it set.
From this post, I've tried:
This changes the font size but not the fontfamily.
Thanks
I simply want to change the default font of my RadRichTextBox from Times New Roman to Calibri. How do I do this?
My RTB uses a HtmlDataProvider which converts html correctly, however I'm wanting Calibri for the instance where just plain text it set.
From this post, I've tried:
<telerikHtml:HtmlDataProvider Html="{Binding WorkCompleted, Mode=TwoWay}"RichTextBox="{Binding ElementName=radRichTextBox1}" /><telerik:RadRichTextBox x:Name="radRichTextBox1"FontFamily="Calibri" FontSize="16" DocumentInheritsDefaultStyleSettings="True" />Thanks