yangyin
2025-03-27 b0de14c2670b9ff0079dacfb4b7457b438368f11
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
#region Imports
 
using DPumpHydr.WinFrmUI.RLT.Animate.Metro;
using DPumpHydr.WinFrmUI.RLT.Child.Metro;
using DPumpHydr.WinFrmUI.RLT.Design.Metro;
using DPumpHydr.WinFrmUI.RLT.Enum.Metro;
using DPumpHydr.WinFrmUI.RLT.Extension.Metro;
using DPumpHydr.WinFrmUI.RLT.Interface.Metro;
using DPumpHydr.WinFrmUI.RLT.Manager;
using System;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Design;
using System.Runtime.InteropServices;
using System.Windows.Forms;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Controls
{
    #region MetroTabControl
 
    [ToolboxItem(true)]
    [ToolboxBitmap(typeof(MetroTabControl), "Bitmaps.TabControl.bmp")]
#if NET48_OR_GREATER
    [Designer(typeof(MetroTabControlDesigner))]
#endif
    [ComVisible(true)]
    public class MetroTabControl : TabControl, IMetroControl
    {
        #region Interfaces
 
        [Category("Metro"), Description("Gets or sets the style associated with the control.")]
        public Style Style
        {
            get => StyleManager?.Style ?? _style;
            set
            {
                _style = value;
                switch (value)
                {
                    case Style.Light:
                        ApplyTheme();
                        break;
                    case Style.Dark:
                        ApplyTheme(Style.Dark);
                        break;
                    case Style.Custom:
                        ApplyTheme(Style.Custom);
                        break;
                    default:
                        ApplyTheme();
                        break;
                }
                Invalidate();
            }
        }
 
        [Category("Metro"), Description("Gets or sets the Style Manager associated with the control.")]
        public MetroStyleManager StyleManager
        {
            get => _styleManager;
            set { _styleManager = value; Invalidate(); }
        }
 
        [Category("Metro"), Description("Gets or sets the The Author name associated with the theme.")]
        public string ThemeAuthor { get; set; }
 
        [Category("Metro"), Description("Gets or sets the The Theme name associated with the theme.")]
        public string ThemeName { get; set; }
 
        #endregion Interfaces
 
        #region Global Vars
 
        private readonly Methods _mth;
        private readonly Utilites _utl;
 
        #endregion Global Vars
 
        #region Internal Vars
 
        private Style _style;
        private MetroStyleManager _styleManager;
        private readonly PointFAnimate _slideAnimator;
        private Graphics _slideGraphics;
        private Bitmap _slideBitmap;
        private bool _isDerivedStyle = true;
        private bool _useAnimation = true;
        private int _speed = 100;
        private Color _unselectedTextColor;
        private Color _selectedTextColor;
        private TabStyle _tabStyle;
 
        #endregion Internal Vars
 
        #region Constructors
 
        public MetroTabControl()
        {
            SetStyle
            (
                ControlStyles.UserPaint |
                ControlStyles.AllPaintingInWmPaint |
                ControlStyles.ResizeRedraw |
                ControlStyles.OptimizedDoubleBuffer |
                ControlStyles.SupportsTransparentBackColor,
                    true
            );
            UpdateStyles();
            ItemSize = new(100, 38);
            Font = MetroFonts.UIRegular(8);
            _mth = new Methods();
            _utl = new Utilites();
            _slideAnimator = new PointFAnimate();
            if (Cursor == null)
            {
                Cursor = MCursor;
            }
 
            MCursor = Cursor;
            ApplyTheme();
        }
 
        #endregion Constructors
 
        #region ApplyTheme
 
        private void ApplyTheme(Style style = Style.Light)
        {
            if (!IsDerivedStyle)
            {
                return;
            }
 
            switch (style)
            {
                case Style.Light:
                    ForegroundColor = Color.FromArgb(65, 177, 225);
                    BackgroundColor = Color.White;
                    UnselectedTextColor = Color.Gray;
                    if (TabStyle == TabStyle.Style1)
                    {
                        SelectedTextColor = Color.White;
                    }
                    else
                    {
                        SelectedTextColor = ForegroundColor;
                    }
                    ThemeAuthor = "Taiizor";
                    ThemeName = "MetroLight";
                    UpdateProperties();
                    break;
                case Style.Dark:
                    ForegroundColor = Color.FromArgb(65, 177, 225);
                    BackgroundColor = Color.FromArgb(30, 30, 30);
                    UnselectedTextColor = Color.Gray;
                    if (TabStyle == TabStyle.Style1)
                    {
                        SelectedTextColor = Color.White;
                    }
                    else
                    {
                        SelectedTextColor = ForegroundColor;
                    }
                    ThemeAuthor = "Taiizor";
                    ThemeName = "MetroDark";
                    UpdateProperties();
                    break;
                case Style.Custom:
                    if (StyleManager != null)
                    {
                        foreach (System.Collections.Generic.KeyValuePair<string, object> varkey in StyleManager.TabControlDictionary)
                        {
                            switch (varkey.Key)
                            {
                                case "ForeColor":
                                    ForegroundColor = _utl.HexColor((string)varkey.Value);
                                    break;
                                case "BackColor":
                                    BackgroundColor = _utl.HexColor((string)varkey.Value);
                                    break;
                                case "UnselectedTextColor":
                                    UnselectedTextColor = _utl.HexColor((string)varkey.Value);
                                    break;
                                case "SelectedTextColor":
                                    SelectedTextColor = _utl.HexColor((string)varkey.Value);
                                    break;
                                default:
                                    return;
                            }
                        }
                    }
 
                    UpdateProperties();
                    break;
            }
        }
 
        private void UpdateProperties()
        {
            try
            {
                InvalidateTabPage(BackgroundColor);
                Invalidate();
                Refresh();
            }
            catch
            {
                //throw new Exception(Ex.StackTrace);
            }
        }
 
        #endregion ApplyTheme
 
        #region Properties
 
        [Category("Metro"), Description("Get or set slide animate time(ms).")]
        public int AnimateTime
        {
            get;
            set;
        } = 200;
 
        [Category("Metro"), Description("Get or set slide animate easing type")]
        public EasingType AnimateEasingType
        {
            get;
            set;
        } = EasingType.CubeOut;
 
        [Category("Metro")]
        [Editor(typeof(MetroTabPageCollectionEditor), typeof(UITypeEditor))]
        public new TabPageCollection TabPages => base.TabPages;
 
        [Category("Metro"), Description("Gets or sets wether the tabcontrol use animation or not.")]
        [DefaultValue(true)]
        public bool UseAnimation
        {
            get => _useAnimation;
            set
            {
                _useAnimation = value;
                Refresh();
            }
        }
 
        [Category("Metro"), Description("Gets or sets the size of the control's tabs.")]
        public new Size ItemSize
        {
            get => base.ItemSize;
            set
            {
                base.ItemSize = value;
                Invalidate();
            }
        }
 
        [Category("Metro"), Description("Gets or sets the font used when displaying text in the control.")]
        public new Font Font { get; set; }
 
        [Category("Metro"), Description("Gets or sets the area of the control (for example, along the top) where the tabs are aligned.")]
        public new TabAlignment Alignment => TabAlignment.Top;
 
        [Category("Metro"), Description("Gets or sets the speed of transition.")]
        [DefaultValue(20)]
        public int Speed
        {
            get => _speed;
            set
            {
                _speed = value;
                Refresh();
            }
        }
 
        [Category("Metro")]
        public override DockStyle Dock
        {
            get => base.Dock; set => base.Dock = value;
        }
 
        [Category("Metro"), Description("Gets or sets the visible of page controls.")]
        public bool ControlsVisible { get; set; } = true;
 
        [Category("Metro"), Description("Gets or sets the cursor of control.")]
        public Cursor MCursor { get; set; } = Cursors.Hand;
 
        [Browsable(false)]
        public Cursor Cursor { get; set; }
 
        [Category("Metro")]
        [Browsable(false)]
        public new TabSizeMode SizeMode { get; set; } = TabSizeMode.Fixed;
 
        [Category("Metro")]
        [Browsable(false)]
        public new TabDrawMode DrawMode { get; set; } = TabDrawMode.Normal;
 
        [Category("Metro"), Description("Gets or sets the backgorund color.")]
        public Color BackgroundColor { get; set; }
 
        [Category("Metro"), Description("Gets or sets the foregorund color.")]
        private Color ForegroundColor { get; set; }
 
        [Category("Metro"), Description("Gets or sets the tabpage text while un-selected.")]
        public Color UnselectedTextColor
        {
            get => _unselectedTextColor;
            set
            {
                _unselectedTextColor = value;
                Refresh();
            }
        }
 
        [Category("Metro"), Description("Gets or sets the tabpage text while selected.")]
        public Color SelectedTextColor
        {
            get => _selectedTextColor;
            set
            {
                _selectedTextColor = value;
                Refresh();
            }
        }
 
        [Category("Metro"), Description("Gets or sets the tancontrol apperance style.")]
        [DefaultValue(TabStyle.Style1)]
        public TabStyle TabStyle
        {
            get => _tabStyle;
            set
            {
                _tabStyle = value;
                if (_tabStyle == TabStyle.Style1)
                {
                    SelectedTextColor = Color.White;
                }
                else if (_tabStyle == TabStyle.Style2)
                {
                    SelectedTextColor = ForegroundColor;
                }
                Refresh();
            }
        }
 
        [Category("Metro")]
        [Description("Gets or sets the whether this control reflect to parent(s) style. \n " +
                     "Set it to false if you want the style of this control be independent. ")]
        public bool IsDerivedStyle
        {
            get => _isDerivedStyle;
            set
            {
                _isDerivedStyle = value;
                Refresh();
            }
        }
 
        #endregion Properties
 
        #region Draw Control
 
        protected override void OnPaint(PaintEventArgs e)
        {
            Graphics g = e.Graphics;
            g.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
            g.Clear(BackgroundColor);
            int h = ItemSize.Height + 2;
            switch (TabStyle)
            {
                case TabStyle.Style1:
                    using (Pen sb = new(ForegroundColor, 2))
                    {
                        g.DrawLine(sb, 2, h, Width - 3, h);
                    }
 
                    for (int i = 0; i <= TabCount - 1; i++)
                    {
                        Rectangle r = GetTabRect(i);
 
                        if (i == SelectedIndex)
                        {
                            using SolidBrush sb = new(ForegroundColor);
                            g.FillRectangle(sb, r);
                        }
 
                        using SolidBrush tb = new(i == SelectedIndex ? SelectedTextColor : UnselectedTextColor);
                        g.DrawString(TabPages[i].Text, Font, tb, r, _mth.SetPosition());
                    }
                    break;
                case TabStyle.Style2:
                    for (int i = 0; i <= TabCount - 1; i++)
                    {
                        Rectangle r = GetTabRect(i);
 
                        if (i == SelectedIndex)
                        {
                            using Pen sb = new(ForegroundColor, 2);
                            g.DrawLine(sb, r.X, r.Height, r.X + r.Width, r.Height);
                        }
 
                        using SolidBrush tb = new(i == SelectedIndex ? SelectedTextColor : UnselectedTextColor);
                        g.DrawString(TabPages[i].Text, Font, tb, r, _mth.SetPosition());
                    }
                    break;
            }
        }
 
        #endregion Draw Control
 
        #region Events
 
        protected override void OnMouseMove(MouseEventArgs e)
        {
            base.OnMouseMove(e);
 
            for (int i = 0; i <= TabCount - 1; i++)
            {
                Rectangle r = GetTabRect(i);
                if (!r.Contains(e.Location))
                {
                    continue;
                }
 
                if (MCursor != Cursor)
                {
                    Cursor = MCursor;
                }
 
                Invalidate();
            }
        }
 
        protected override void OnMouseLeave(EventArgs e)
        {
            base.OnMouseLeave(e);
 
            if (MCursor == Cursor)
            {
                Cursor = Cursors.Default;
            }
 
            Invalidate();
        }
 
        protected override void WndProc(ref Message m)
        {
            //_utl.SmoothCursor(ref m);
            _utl.SmoothCursor(ref m, Cursor);
            //_utl.NormalCursor(ref m, Cursor);
 
            base.WndProc(ref m);
        }
 
        #region Animation
 
        private int _oldIndex;
 
        private void DoSlideAnimate(System.Windows.Forms.TabPage control1, System.Windows.Forms.TabPage control2, bool moveback)
        {
            _utl.InitControlHandle(control1);
            _utl.InitControlHandle(control2);
            _slideGraphics = Graphics.FromHwnd(control2.Handle);
            _slideBitmap = new(control1.Width + control2.Width, control1.Height + control2.Height);
 
            if (moveback)
            {
                control2.DrawToBitmap(_slideBitmap, new Rectangle(0, 0, control2.Width, control2.Height));
                control1.DrawToBitmap(_slideBitmap, new Rectangle(control2.Width, 0, control1.Width, control1.Height));
            }
            else
            {
                control1.DrawToBitmap(_slideBitmap, new Rectangle(0, 0, control1.Width, control1.Height));
                control2.DrawToBitmap(_slideBitmap, new Rectangle(control1.Width, 0, control2.Width, control2.Height));
            }
 
            if (ControlsVisible)
            {
                foreach (Control c in control2.Controls)
                {
                    c.Hide();
                }
            }
 
            _slideAnimator.Update = (alpha) =>
            {
                _slideGraphics.DrawImage(_slideBitmap, alpha);
            };
 
            _slideAnimator.Complete = () =>
            {
                SelectedTab = control2;
                if (ControlsVisible)
                {
                    foreach (Control c in control2.Controls)
                    {
                        c.Show();
                    }
                }
            };
 
            _slideAnimator.Start
            (
                AnimateTime,
                new Point(moveback ? -control2.Width : 0, 0),
                new Point(moveback ? 0 : -control1.Width, 0),
                AnimateEasingType
            );
        }
 
        protected override void OnSelecting(TabControlCancelEventArgs e)
        {
            if (!UseAnimation)
            {
                return;
            }
 
            if (_slideAnimator.Active)
            {
                e.Cancel = true;
                return;
            }
 
            DoSlideAnimate(TabPages[_oldIndex], TabPages[e.TabPageIndex], _oldIndex > e.TabPageIndex);
        }
 
        protected override void OnDeselecting(TabControlCancelEventArgs e)
        {
            _oldIndex = e.TabPageIndex;
        }
 
        private void DoAnimationScrollRight(Control control1, Control control2)
        {
            Graphics g = control1.CreateGraphics();
 
            Bitmap p1 = new(control1.Width, control1.Height);
            Bitmap p2 = new(control2.Width, control2.Height);
 
            control1.DrawToBitmap(p1, new Rectangle(0, 0, control1.Width, control1.Height));
            control2.DrawToBitmap(p2, new Rectangle(0, 0, control2.Width, control2.Height));
 
            if (ControlsVisible)
            {
                foreach (Control c in control1.Controls)
                {
                    c.Hide();
                }
            }
 
            int slide = control1.Width - (control1.Width % Speed);
 
            int a;
 
            for (a = 0; a >= -slide; a += -Speed)
            {
                g.DrawImage(p1, new Rectangle(a, 0, control1.Width, control1.Height));
                g.DrawImage(p2, new Rectangle(a + control2.Width, 0, control2.Width, control2.Height));
            }
 
            a = control1.Width;
 
            g.DrawImage(p1, new Rectangle(a, 0, control1.Width, control1.Height));
            g.DrawImage(p2, new Rectangle(a + control2.Width, 0, control2.Width, control2.Height));
 
            SelectedTab = (System.Windows.Forms.TabPage)control2;
 
            if (ControlsVisible)
            {
                foreach (Control c in control2.Controls)
                {
                    c.Show();
                }
 
                foreach (Control c in control1.Controls)
                {
                    c.Show();
                }
            }
        }
 
        #endregion Animation
 
        #endregion Events
 
        #region Methods
 
        private void InvalidateTabPage(Color c)
        {
            foreach (MetroTabPage T in TabPages)
            {
                T.Style = Style;
                T.BaseColor = c;
                T.Invalidate();
            }
        }
 
        #endregion
    }
 
    #endregion
}