- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在阅读 DrawItemState documentation我遇到了以下代码片段:
if ((e.State & DrawItemState.Selected) == DrawItemState.Selected )
brush = SystemBrushes.HighlightText;
文档中给出了如下解释
Since state can be a combination (bit-flag) of enum values, you can't use "==" to compare them
但是我仍然不明白这个条件表达式与下面显示的片段有何不同:
if (e.State == DrawItemState.Selected )
brush = SystemBrushes.HighlightText;
此外,我不明白按位 AND &
运算符有何不同以及为什么它甚至包含在条件表达式中。
最佳答案
由于枚举的基础值,您可以设置多个值(bitwise combination):
var state = DrawItemState.Disabled | DrawItemState.Grayed;
这意味着它们都将返回 false
:
Console.WriteLine(state == DrawItemState.Disabled); // false
Console.WriteLine(state == DrawItemState.Grayed); // false
测试值的一种方法是使用按位“与”运算符:
Console.WriteLine((state & DrawItemState.Grayed) == DrawItemState.Grayed); // true
基本上,在我的示例中,state
设置了两个位 - 用于“Grayed”和“Disabled”。通过使用值为“Grayed”的按位“与”运算符,结果也是“Grayed”的值。
0 0 0 0 0 0 0 0 1 1 0 // binary value of disabled and grayed
0 0 0 0 0 0 0 0 0 1 0 // binary value of grayed
0 0 0 0 0 0 0 0 0 1 0 // result is same value as grayed
您也可以测试多个标志:
Console.WriteLine((state & (DrawItemState.Grayed | DrawItemState.Disabled))
== (DrawItemState.Grayed | DrawItemState.Disabled)); // true
0 0 0 0 0 0 0 0 1 1 0 // binary value of disabled and grayed
0 0 0 0 0 0 0 0 1 1 0 // binary value of disabled and grayed
0 0 0 0 0 0 0 0 1 1 0 // result is same value as disabled and grayed
就个人而言,我认为使用 HasFlag
测试标志值更容易:
Console.WriteLine(state.HasFlag(DrawItemState.Grayed)); // true
请注意,如果只有一个值,则 ==
会起作用,但对于支持按位组合的“标志”枚举,这永远无法保证。
var state = DrawItemState.Grayed;
Console.WriteLine(state == DrawItemState.Grayed); // true
关于c# - 在 Windows 窗体中检查 DrawItemState 等效性的条件表达式是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54248109/
对于一个科学实验,我写了一个turtle.py ,它会打开一个 800x480 的窗口并绘制一个缓慢增长的黑点。 turtle.py以 C:\Users\kaza>python C:\Users\ka
我开发了一个 swing 应用程序,但每次运行应用程序时都会打开一个新窗口。我希望如果一个窗口已经打开,则其他窗口不允许打开。 最佳答案 Here是一个 Java 单一应用实例的例子: A singl
有没有办法检测主进程中 Electron 的结构? process.platform 似乎也在 x64 机器上返回 win32,我没有在文档中找到任何获取架构的选项。 最佳答案 你试过 process
public short[] HanningWindow(short[] signal_in ,int pos ,int size) { for (int i= pos; i < pos+si
我有一个具有这些属性的 Electron 窗口: mainWindow = new BrowserWindow({ width: 800, height: 600, title: "Aqu
我有一个 Ubuntu 工作站,我正在尝试引导一个 Windows 节点。 Windows 节点在端口 2222 上打开了 ssh。我一直在关注 http://docs.opscode.com/plu
我是一名优秀的程序员,十分优秀!