在C#中怎么同时使富文本框中的字体加粗、倾斜并带下划线
1个回答
展开全部
private void button1_Click(object sender, EventArgs e)
{
Font newFont;
newFont = new Font(this.richTextBox1.SelectionFont, this.richTextBox1.SelectionFont.Style | FontStyle.Bold | FontStyle.Underline | FontStyle.Italic );
this.richTextBox1.SelectionFont = newFont;
}
{
Font newFont;
newFont = new Font(this.richTextBox1.SelectionFont, this.richTextBox1.SelectionFont.Style | FontStyle.Bold | FontStyle.Underline | FontStyle.Italic );
this.richTextBox1.SelectionFont = newFont;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询