C# richtextbox 中英字符串设置字体格式出错

我用下面的代码来控制所选文字加粗if(richTextBox1.SelectionFont.Bold==true){richTextBox1.SelectionFont=... 我用下面的代码来控制所选文字加粗

if (richTextBox1.SelectionFont.Bold == true) { richTextBox1.SelectionFont = new Font(richTextBox1.SelectionFont, FontStyle.Regular); }
else { richTextBox1.SelectionFont = new Font(richTextBox1.SelectionFont, FontStyle.Bold); }
纯中文或纯英文下,可以加粗,如果选中的有英文有中文,那么在richtextbox1.selectionfont这里会报错该值为null怎么解决?
展开
 我来答
玩转数据处理
推荐于2016-04-14 · 数据处理,Python,dotnet
玩转数据处理
采纳数:1613 获赞数:3794

向TA提问 私信TA
展开全部
richTextBox1.SelectionFont.Bold 这个属性本身就是bool类型,不需要再判断是否等于true了,可改为
if (richTextBox1.SelectionFont!= null &&richTextBox1.SelectionFont.Bold)
{
richTextBox1.SelectionFont = new Font(richTextBox1.SelectionFont, FontStyle.Regular);
}
else
{
richTextBox1.SelectionFont = new Font(richTextBox1.SelectionFont, FontStyle.Bold);
}
更多追问追答
追问
额。。。对问题没有帮助啊
追答
还是报一样的错?????还是???我测试过的,没问题
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式