关于Font的问题?
书上的一段代码不能实现,求教?是不是少了什么引用?private void checkBoldStyle_CheckedChanged(object sender, EventArgs e)
{
Font newfont;
Font oldfont;
oldfont =this .richTextBox1.SelectionFont ;
if (this.checkBoldStyle.Checked)
{
newfont = new Font(oldfont,oldfont .Style |FontStyle .B );
}
//else
// newfont = new Font(oldfont, oldfont.Style & ~oldfont.Bold);
}
怎么FontStyle.后面就显不出来了,但书上又能显示,看了下帮助,又没有问题。不知道问题出在哪?