jjzjj

MouseButtons

全部标签

c# - Windows.Forms.MouseButtons 中的奇数枚举值

我在System.Windows.Forms命名空间中找到了这个gem(IMO)。我正在努力弄清楚为什么要这样设置。[Flags]publicenumMouseButtons{None=0,Left=1048576,Right=2097152,Middle=4194304,XButton1=8388608,XButton2=16777216,}有人可以解释为什么它使用这些值(2^20到2^24的幂)而不是这个:publicenumMouseButtons{None=0,Left=1,//2^0Right=2,//2^1Middle=4,//2^2XButton1=8,//2^3XBut