using System;
namespace Microsoft.Windows.Forms
{
///
/// 边角弯曲样式。
///
[Flags]
public enum CornerStyle : int
{
///
/// 默认样式
///
None = 0x0000,
///
/// 左上角,左下角往内部弯曲
///
LeftIn = 0x0001,
///
/// 左上角,右上角往内部弯曲
///
TopIn = 0x0002,
///
/// 右上角,右下角往内部弯曲
///
RightIn = 0x0004,
///
/// 左下角,右下角往内部弯曲
///
BottomIn = 0x0008,
///
/// 左上角,左下角往外部弯曲
///
LeftOut = 0x0010,
///
/// 左上角,右上角往外部弯曲
///
TopOut = 0x0020,
///
/// 右上角,右下角往外部弯曲
///
RightOut = 0x0040,
///
/// 左下角,右下角往外部弯曲
///
BottomOut = 0x0080,
///
/// 水平(LeftIn|RightIn|LeftOut|RightOut)
///
Horizontal = 0x0055,
///
/// 垂直(TopIn|BottomIn|TopOut|BottomOut)
///
Vertical = 0x00AA,
}
}