tangxu
2024-12-16 23fadc9cb0c09b665a1bbcef7eaf16f916045dc4
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#region Imports
 
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
using System.Windows.Forms;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Controls
{
    #region ParrotGradientPanel
 
    public class ParrotGradientPanel : System.Windows.Forms.Panel
    {
        public ParrotGradientPanel()
        {
            DoubleBuffered = true;
            base.SetStyle(ControlStyles.UserPaint | ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint, true);
            BackColor = Color.White;
            base.Size = new Size(200, 200);
        }
 
        [Browsable(false)]
        [EditorBrowsable(EditorBrowsableState.Never)]
        public new Color BackColor { get; set; }
 
        [Browsable(false)]
        [EditorBrowsable(EditorBrowsableState.Never)]
        public new Color ForeColor { get; set; }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The primer color")]
        public Color PrimerColor
        {
            get => primerColor;
            set
            {
                primerColor = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The top left color")]
        public Color TopLeft
        {
            get => topLeft;
            set
            {
                topLeft = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The top right color")]
        public Color TopRight
        {
            get => topRight;
            set
            {
                topRight = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The bottom left color")]
        public Color BottomLeft
        {
            get => bottomLeft;
            set
            {
                bottomLeft = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The bottom right color")]
        public Color BottomRight
        {
            get => bottomRight;
            set
            {
                bottomRight = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The gradient orientation")]
        public GradientStyle Style
        {
            get => style;
            set
            {
                style = value;
                Refresh();
            }
        }
 
        private SmoothingMode _SmoothingType = SmoothingMode.AntiAlias;
        [Category("Parrot")]
        [Browsable(true)]
        public SmoothingMode SmoothingType
        {
            get => _SmoothingType;
            set
            {
                _SmoothingType = value;
                Invalidate();
            }
        }
 
        private InterpolationMode _InterpolationType = InterpolationMode.HighQualityBilinear;
        [Category("Parrot")]
        [Browsable(true)]
        public InterpolationMode InterpolationType
        {
            get => _InterpolationType;
            set
            {
                _InterpolationType = value;
                Invalidate();
            }
        }
 
        private CompositingQuality _CompositingQualityType = CompositingQuality.HighQuality;
        [Category("Parrot")]
        [Browsable(true)]
        public CompositingQuality CompositingQualityType
        {
            get => _CompositingQualityType;
            set
            {
                _CompositingQualityType = value;
                Invalidate();
            }
        }
 
        private PixelOffsetMode _PixelOffsetType = PixelOffsetMode.HighQuality;
        [Category("Parrot")]
        [Browsable(true)]
        public PixelOffsetMode PixelOffsetType
        {
            get => _PixelOffsetType;
            set
            {
                _PixelOffsetType = value;
                Invalidate();
            }
        }
 
        private TextRenderingHint _TextRenderingType = TextRenderingHint.ClearTypeGridFit;
        [Category("Parrot")]
        [Browsable(true)]
        public TextRenderingHint TextRenderingType
        {
            get => _TextRenderingType;
            set
            {
                _TextRenderingType = value;
                Invalidate();
            }
        }
 
        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);
            BufferedGraphicsContext bufferedGraphicsContext = BufferedGraphicsManager.Current;
            bufferedGraphicsContext.MaximumBuffer = new Size(base.Width + 1, base.Height + 1);
            bufferedGraphics = bufferedGraphicsContext.Allocate(base.CreateGraphics(), base.ClientRectangle);
            bufferedGraphics.Graphics.SmoothingMode = SmoothingType;
            bufferedGraphics.Graphics.InterpolationMode = InterpolationType;
            bufferedGraphics.Graphics.CompositingQuality = CompositingQualityType;
            bufferedGraphics.Graphics.PixelOffsetMode = PixelOffsetType;
            bufferedGraphics.Graphics.TextRenderingHint = TextRenderingType;
            bufferedGraphics.Graphics.Clear(primerColor);
            if (style == GradientStyle.Corners)
            {
                LinearGradientBrush linearGradientBrush = new(new Rectangle(0, 0, base.Width, base.Height), TopLeft, Color.Transparent, 45f);
                bufferedGraphics.Graphics.FillRectangle(linearGradientBrush, base.ClientRectangle);
                linearGradientBrush = new(new Rectangle(0, 0, base.Width, base.Height), topRight, Color.Transparent, 135f);
                bufferedGraphics.Graphics.FillRectangle(linearGradientBrush, base.ClientRectangle);
                linearGradientBrush = new(new Rectangle(0, 0, base.Width, base.Height), bottomRight, Color.Transparent, 225f);
                bufferedGraphics.Graphics.FillRectangle(linearGradientBrush, base.ClientRectangle);
                linearGradientBrush = new(new Rectangle(0, 0, base.Width, base.Height), bottomLeft, Color.Transparent, 315f);
                bufferedGraphics.Graphics.FillRectangle(linearGradientBrush, base.ClientRectangle);
                linearGradientBrush.Dispose();
            }
            else
            {
                Brush brush;
                if (style == GradientStyle.Vertical)
                {
                    brush = new LinearGradientBrush(base.ClientRectangle, topLeft, topRight, 720f);
                }
                else
                {
                    brush = new LinearGradientBrush(base.ClientRectangle, topLeft, topRight, 90f);
                }
                bufferedGraphics.Graphics.FillRectangle(brush, base.ClientRectangle);
                brush.Dispose();
            }
            bufferedGraphics.Render(e.Graphics);
        }
 
        private BufferedGraphics bufferedGraphics;
 
        private Color primerColor = Color.White;
 
        private Color topLeft = Color.DeepSkyBlue;
 
        private Color topRight = Color.Fuchsia;
 
        private Color bottomLeft = Color.Black;
 
        private Color bottomRight = Color.Fuchsia;
 
        private GradientStyle style = GradientStyle.Corners;
 
        public enum GradientStyle
        {
            Horizontal,
            Vertical,
            Corners
        }
    }
 
    #endregion
}