标题:问题xx
取消只看楼主
casualhewo
Rank: 1
等 级:新手上路
帖 子:267
专家分:0
注 册:2006-6-13
 问题点数:0 回复次数:0 
问题xx

private void miBold_Click(object sender, System.EventArgs e)
{
Font newFont = new Font(rtfText.SelectionFont,
(rtfText.SelectionFont.Bold ?
rtfText.SelectionFont.Style & ~FontStyle.Bold :
rtfText.SelectionFont.Style | FontStyle.Bold));
rtfText.SelectionFont = newFont;

}
我想问一下
Font newFont = new Font(rtfText.SelectionFont,
(rtfText.SelectionFont.Bold ?
rtfText.SelectionFont.Style & ~FontStyle.Bold :
rtfText.SelectionFont.Style | FontStyle.Bold));
什么意思啊!
rtfText.SelectionFont.Style & ~FontStyle.Bold :
这个是怎么比较的啊.
rtfText.SelectionFont.Bold ?这行是不是当前选定的文本是副为粗体.
如果为粗体 rtfText.SelectionFont.Style & ~FontStyle.Bold :
这个比较是什么意思啊!
如果不为粗体.rtfText.SelectionFont.Style | FontStyle.Bold
这个又是什么意思啊!

搜索更多相关主题的帖子: rtfText Bold Style sender 
2006-08-11 23:23



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-83514-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.255499 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved