从 FontStyle 中减去标志(切换 FontStyles)[C#]
我有一个小问题。我有 1 个 RichTextBox 和 2 个按钮。
我有两个按钮“切换粗体 FStyle”和“切换斜体 FStyle”。
我想切换 FontStyles 而不影响其他 FontStyles。我希望你能理解我。
下面的代码在组合 FontStyles 时有效,但在分离/减去 FontStyles 时不起作用。
private void button1_Click(object sender, EventArgs e)
{
richTextBox1.SelectionFont = new Font(richTextBox1.Font, (richTextBox1.SelectionFont.Bold == false ? richTextBox1.SelectionFont.Style | FontStyle.Bold : richTextBox1.SelectionFont.Style));
}
private void button2_Click(object sender, EventArgs e)
{
richTextBox1.SelectionFont = new Font(richTextBox1.Font, (richTextBox1.SelectionFont.Italic == false ? richTextBox1.SelectionFont.Style | FontStyle.Italic : richTextBox1.SelectionFont.Style));
}
- 我将选定的文本设为粗体
- 我将选定的文本设为斜体
- 我想在粗体仍处于活动状态(或相反)时删除斜体
I have a little problem. I have one 1 RichTextBox and 2 Buttons.
I have that 2 buttons for "toggle Bold FStyle" and "toggle Italic FStyle".
I want to toggle FontStyles without affecting other FontStyles. I hope you understand me.
Below code works when combining FontStyles but is not working when seperating/substracting FontStyles.
private void button1_Click(object sender, EventArgs e)
{
richTextBox1.SelectionFont = new Font(richTextBox1.Font, (richTextBox1.SelectionFont.Bold == false ? richTextBox1.SelectionFont.Style | FontStyle.Bold : richTextBox1.SelectionFont.Style));
}
private void button2_Click(object sender, EventArgs e)
{
richTextBox1.SelectionFont = new Font(richTextBox1.Font, (richTextBox1.SelectionFont.Italic == false ? richTextBox1.SelectionFont.Style | FontStyle.Italic : richTextBox1.SelectionFont.Style));
}
- I make selected text Bold
- I make selected text Italic
- I want to remove Italic while Bold is still active (or opposite)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是使用按位异或 (
^
),它只是切换值:The easiest way is to use bitwise XOR (
^
), which just toggles the value: