0
我已經知道如何更改字體:如何更改文本的字體?
private void toolStripButton2_Click(object sender, EventArgs e)//italic
{
//maintext is the richTextBox
maintext.SelectionFont = new Font(maintext.Font, FontStyle.Italic);
maintext.SelectionStart = maintext.SelectionStart + maintext.SelectionLength;
maintext.SelectionLength = 0;
maintext.SelectionFont = maintext.Font;
}
但是我怎麼允許兩種字體的同時,使字體恢復正常? 也可以讓你不必先鍵入文字然後選擇它;只需按下按鈕。