我想在RichTextBox粗體中創建一些SelectedText
。我用這個:RichTextBox中的部分文本爲粗體
private void RichTextBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.Modifiers == Keys.Control && e.KeyCode == Keys.B)
{
if (RichTextBox1.SelectedText.Length == 0)
{
}
RichTextBox1.SelectedText = Font.Bold;
}
}
但我得到這個錯誤:
不含蓄可以轉換類型 '布爾' 到 '串'。
我不知道該怎麼做:\
這很好。謝謝 :) – Etrit 2013-05-02 08:00:09