using System.Drawing; namespace Microsoft.Windows.Forms { /// /// 默认值方案 /// public static partial class DefaultTheme { /// /// 模糊特效颜色 /// public static Color BlurColor = Color.FromArgb(80, 255, 255, 255); /// /// 模糊特效颜色 /// public const string _BlurColor = "80, 255, 255, 255"; /// /// 玻璃特效中心颜色 /// public static Color GlassCenterColor = Color.FromArgb(200, 255, 255, 255); /// /// 玻璃特效中心颜色 /// public const string _GlassCenterColor = "200, 255, 255, 255"; /// /// 玻璃特效环绕颜色 /// public static Color GlassSurroundColor = Color.Transparent; /// /// 玻璃特效环绕颜色 /// public const string _GlassSurroundColor = "Transparent"; } }