我已经知道代码Label1.Font = new Font(Label1.Font,FontStyle.Regular);
但是从这段代码中它将同时撤消BOLD& ITALIC属性.我只想删除大胆的属性…..
有什么像fontsyle.bold = false吗?
label1.Font = new Font(label1.Font,label1.Font.Style & ~FontStyle.Bold);