tangxu
2024-10-22 6a07c4c846ffbb1e93afdf0260e123e4c145f419
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System.Drawing;
 
namespace Microsoft.Windows.Forms
{
    /// <summary>
    /// 默认值方案
    /// </summary>
    public static partial class DefaultTheme
    {
        /// <summary>
        /// 模糊特效颜色
        /// </summary>
        public static Color BlurColor = Color.FromArgb(80, 255, 255, 255);
        /// <summary>
        /// 模糊特效颜色
        /// </summary>
        public const string _BlurColor = "80, 255, 255, 255";
 
        /// <summary>
        /// 玻璃特效中心颜色
        /// </summary>
        public static Color GlassCenterColor = Color.FromArgb(200, 255, 255, 255);
        /// <summary>
        /// 玻璃特效中心颜色
        /// </summary>
        public const string _GlassCenterColor = "200, 255, 255, 255";
 
        /// <summary>
        /// 玻璃特效环绕颜色
        /// </summary>
        public static Color GlassSurroundColor = Color.Transparent;
        /// <summary>
        /// 玻璃特效环绕颜色
        /// </summary>
        public const string _GlassSurroundColor = "Transparent";
    }
}