12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- namespace Microsoft.Windows.Forms
- {
-
-
-
- [Flags]
- public enum RoundStyle : int
- {
-
-
-
- None = 0x0000,
-
-
-
- TopLeft = 0x0001,
-
-
-
- TopRight = 0x0002,
-
-
-
- BottomRight = 0x0004,
-
-
-
- BottomLeft = 0x0008,
-
-
-
- Left = 0x0009,
-
-
-
- Top = 0x0003,
-
-
-
- Right = 0x0006,
-
-
-
- Bottom = 0x000C,
-
-
-
- All = 0x000F,
- }
- }
|