FlatStyle.cs 477 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Windows.Forms.FlatStyle.cs
  3. //
  4. // Author:
  5. // Jaak Simm ([email protected])
  6. // Dennis Hayes ([email protected])
  7. // (C) 2002 Ximian, Inc. http://www.ximian.com
  8. //
  9. using System;
  10. namespace System.Windows.Forms {
  11. /// <summary>
  12. /// Specifies the appearance of a control.
  13. /// </summary>
  14. //[Serializable]
  15. public enum FlatStyle {
  16. //Values were verified with enumcheck.
  17. Flat = 0,
  18. Popup = 1,
  19. Standard = 2,
  20. System = 3,
  21. }
  22. }