tangxu
2024-12-24 91105b77c916d06dd30380e20594e29f85eae3da
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#region Imports
 
using DPumpHydr.WinFrmUI.RLT.Colors;
using DPumpHydr.WinFrmUI.RLT.Util;
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
using System.Windows.Forms;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Controls
{
    #region HopeCheckBox
 
    public class HopeCheckBox : System.Windows.Forms.CheckBox
    {
        #region Variables
        private Color _EnabledCheckedColor = HopeColors.PrimaryColor;
        private Color _EnabledUncheckedColor = ColorTranslator.FromHtml("#9c9ea1");
        private Color _DisabledColor = ColorTranslator.FromHtml("#c4c6ca");
        private Color _EnabledStringColor = ColorTranslator.FromHtml("#999999");
        private Color _DisabledStringColor = ColorTranslator.FromHtml("#babbbd");
        private Color _CheckedColor = HopeColors.PrimaryColor;
        private readonly Timer AnimationTimer = new() { Interval = 15 };
        private int SizeAnimationNum = 14;
        private int PointAnimationNum = 3;
        private bool enterFlag = false;
        private bool _Enable = true;
        #endregion
 
        #region Settings
        public bool Enable
        {
            get => _Enable;
            set
            {
                _Enable = value;
                Invalidate();
            }
        }
 
        public Color EnabledCheckedColor
        {
            get => _EnabledCheckedColor;
            set
            {
                _EnabledCheckedColor = value;
                Invalidate();
            }
        }
 
        public Color EnabledUncheckedColor
        {
            get => _EnabledUncheckedColor;
            set
            {
                _EnabledUncheckedColor = value;
                Invalidate();
            }
        }
 
        public Color DisabledColor
        {
            get => _DisabledColor;
            set
            {
                _DisabledColor = value;
                Invalidate();
            }
        }
 
        public Color EnabledStringColor
        {
            get => _EnabledStringColor;
            set
            {
                _EnabledStringColor = value;
                Invalidate();
            }
        }
 
        public Color DisabledStringColor
        {
            get => _DisabledStringColor;
            set
            {
                _DisabledStringColor = value;
                Invalidate();
            }
        }
 
        public Color CheckedColor
        {
            get => _CheckedColor;
            set
            {
                _CheckedColor = value;
                Invalidate();
            }
        }
        #endregion
 
        #region Events
        protected override void OnHandleCreated(EventArgs e)
        {
            base.OnHandleCreated(e);
            AnimationTimer.Start();
        }
 
        protected override void OnResize(EventArgs e)
        {
            Height = 20;
            //Width = 25 + (int)CreateGraphics().MeasureString(Text, Font).Width;
            Width = 25 + TextRenderer.MeasureText(Text, Font).Width;
        }
 
        protected override void OnCreateControl()
        {
            base.OnCreateControl();
            Height = 20;
            //Width = 25 + (int)CreateGraphics().MeasureString(Text, Font).Width;
            Width = 25 + TextRenderer.MeasureText(Text, Font).Width;
        }
 
        protected override void OnMouseEnter(EventArgs eventargs)
        {
            base.OnMouseEnter(eventargs);
            enterFlag = true;
 
            if (_Enable)
            {
                Cursor = Cursors.Hand;
            }
            else
            {
                Cursor = Cursors.Default;
            }
 
            Invalidate();
        }
 
        protected override void OnMouseLeave(EventArgs eventargs)
        {
            base.OnMouseLeave(eventargs);
            enterFlag = false;
            Invalidate();
        }
        #endregion
 
        protected override void OnPaint(PaintEventArgs pevent)
        {
            Graphics graphics = pevent.Graphics;
 
            graphics.SmoothingMode = SmoothingMode.HighQuality;
            graphics.PixelOffsetMode = PixelOffsetMode.HighQuality;
            graphics.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;
 
            graphics.Clear(BackColor);
 
            GraphicsPath checkmarkPath = RoundRectangle.CreateRoundRect(2, 2, 16, 16, 1);
            //Rectangle checkMarkLine = new(3, 3, 14, 14);
 
            SolidBrush BG = new(_Enable ? (Checked || enterFlag ? _EnabledCheckedColor : _EnabledUncheckedColor) : _DisabledColor);
            Pen Pen = new(BG.Color);
 
            graphics.FillPath(BG, checkmarkPath);
            graphics.DrawPath(Pen, checkmarkPath);
 
            graphics.DrawLines(new(Color.White, 2), new PointF[]
            {
                new(5, 9),new(9, 13), new(15, 6)
            });
 
            graphics.FillRectangle(new SolidBrush(Color.White), PointAnimationNum, PointAnimationNum, SizeAnimationNum, SizeAnimationNum);
 
            graphics.DrawString(Text, Font, new SolidBrush(_Enable ? (Checked ? _CheckedColor : ForeColor) : _DisabledStringColor), new RectangleF(22, 0, Width - 22, Height), HopeStringAlign.Center);
        }
 
        private void AnimationTick(object sender, EventArgs e)
        {
            if (Checked)
            {
                if (SizeAnimationNum > 0)
                {
                    SizeAnimationNum -= 2;
                    PointAnimationNum += 1;
                    Invalidate();
                }
            }
            else
            {
                if (SizeAnimationNum < 14)
                {
                    SizeAnimationNum += 2;
                    PointAnimationNum -= 1;
                    Invalidate();
                }
            }
        }
 
        public HopeCheckBox()
        {
            AnimationTimer.Tick += new EventHandler(AnimationTick);
            DoubleBuffered = true;
            Font = new("Segoe UI", 12);
            ForeColor = HopeColors.MainText;
            Size = new(147, 20);
            Cursor = Cursors.Hand;
        }
    }
 
    #endregion
}