I want to allow the user to change the font while using the app. For example, my user typed the first paragraph in arial font, 12 pt; then next paragraph he can type in another font with a different size.
The problem I am facing is when I change a font, the entire font of the text field is changing.
Code is:
if (comboBox1.SelectedIndex == 1)
{
richTextBox1.Font =
new Font(richTextBox1.Font.FontFamily, 12, FontStyle.Italic);
}