ControlStyles.cs 648 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Windows.Forms.ControlStyles.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. /// <summary>
  11. /// </summary>
  12. public enum ControlStyles {
  13. AllPaintingInWmPaint = 8192,
  14. CacheText = 16384,
  15. ContainerControl = 1,
  16. DoubleBuffer = 65536,
  17. EnableNotifyMessage = 32768,
  18. FixedHeight = 64,
  19. FixedWidth = 32,
  20. Opaque = 4,
  21. ResizeRedraw = 16,
  22. Selectable = 512,
  23. StandardClick = 256,
  24. StandardDoubleClick = 4096,
  25. SupportsTransparentBackColor = 2045,
  26. UserMouse = 1024,
  27. UserPaint = 2
  28. }
  29. }