how can I change the font for a currently selected text area inside a WPF RichTextBox?
Solved...
if (this.TextEditor.Selection.IsEmpty) this.TextEditor.CurrentFontFamily = SelectedFont; else this.TextEditor.Selection.ApplyPropertyValue(TextElement.FontFamilyProperty, SelectedFont);