using System; namespace Microsoft.Windows.Forms { /// /// 背景色绘制完后再绘制的内容的类型 /// [Flags] public enum AeroStyle : int { /// /// 不绘制 /// None = 0x0000, /// /// 绘制半透明模糊,一般位于控件顶部或左侧 /// Blur = 0x0001, /// /// 绘制圆玻璃效果,一般位于底部或右侧 /// Glass = 0x0002, /// /// 两个个效果都绘制 /// All = 0x0003, } }