| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Windows.Forms.ControlStyles.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// </summary>
- public enum ControlStyles {
- AllPaintingInWmPaint = 8192,
- CacheText = 16384,
- ContainerControl = 1,
- DoubleBuffer = 65536,
- EnableNotifyMessage = 32768,
- FixedHeight = 64,
- FixedWidth = 32,
- Opaque = 4,
- ResizeRedraw = 16,
- Selectable = 512,
- StandardClick = 256,
- StandardDoubleClick = 4096,
- SupportsTransparentBackColor = 2045,
- UserMouse = 1024,
- UserPaint = 2
- }
- }
|