UICues.cs 799 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Windows.Forms.UICues.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. // (C) 2002 Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. namespace System.Windows.Forms {
  10. // Specifies the state of the user interface
  11. [Flags]
  12. public enum UICues
  13. {
  14. Changed = 12, // The state of the focus cues and keyboard cues has changed.
  15. ChangeFocus = 4, // The state of the focus cues has changed.
  16. ChangeKeyboard = 8, // The state of the keyboard cues has changed.
  17. None = 0, // No change was made.
  18. ShowFocus = 1, // Focus rectangles are displayed after the change.
  19. ShowKeyboard = 2, // Keyboard cues are underlined after the change.
  20. Shown = 3, // Focus rectangles are displayed and keyboard cues are underlined
  21. }
  22. }