MouseButtons.cs 247 B

12345678910111213
  1. namespace System.Windows.Forms
  2. {
  3. [Flags]
  4. public enum MouseButtons
  5. {
  6. Left = 0x100000,
  7. None = 0x0,
  8. Right = 0x200000,
  9. Middle = 0x400000,
  10. XButton1 = 0x800000,
  11. XButton2 = 0x1000000
  12. }
  13. }