HotkeyPrefix.cs 267 B

12345678910111213141516
  1. //
  2. // System.Drawing.HotkeyPrefix.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Dennis Hayes ([email protected])
  6. //
  7. using System;
  8. namespace System.Drawing.Text
  9. {
  10. [Serializable]
  11. public enum HotkeyPrefix {
  12. Hide = 2,
  13. None = 0,
  14. Show = 1
  15. }
  16. }