0
試圖將字體樣式更改爲下劃線1行,並打印常規樣式中的下一行不適用於我。我想是這樣的: -更改C#中只有一行的文本框的字體樣式
textBox1.Font = new Font(textBox1.Font, FontStyle.Underline);
textBox1.Text+="This line should be underlined";
textBox1.Font = new Font(textBox1.Font, FontStyle.Regular);
textBox1.Text+=Environment.NewLine;
textBox1.Text+="This line should be normal";
但只有當它在影響FontStyle最後一行完成,在這種情況下,普通一切都來了。如果我刪除第三行,所有內容都會強調。
打我吧:) –