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
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
#region Imports
 
using DPumpHydr.WinFrmUI.RLT.Child.Material;
using DPumpHydr.WinFrmUI.RLT.Controls;
using DPumpHydr.WinFrmUI.RLT.Enum.Material;
using DPumpHydr.WinFrmUI.RLT.Manager;
using DPumpHydr.WinFrmUI.RLT.Util;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Text;
using System.Linq;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using static DPumpHydr.WinFrmUI.RLT.Helper.MaterialDrawHelper;
using static DPumpHydr.WinFrmUI.RLT.Util.MaterialAnimations;
using ButtonState = DPumpHydr.WinFrmUI.RLT.Enum.Material.ButtonState;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Forms
{
    #region MaterialForm
 
    public class MaterialForm : Form, MaterialControlI
    {
        #region Public Properties
        [Browsable(false)]
        public int Depth { get; set; }
 
        [Browsable(false)]
        public MaterialSkinManager SkinManager => MaterialSkinManager.Instance;
 
        [Browsable(false)]
        public MaterialMouseState MouseState { get; set; }
 
        [Category("Layout")]
        public bool Sizable { get; set; }
 
        [Category("Material"), Browsable(true), DisplayName("Form Style"), DefaultValue(FormStyles.ActionBar_40)]
        public FormStyles FormStyle
        {
            get => _formStyle;
            set
            {
                if (_formStyle == value)
                {
                    return;
                }
 
                _formStyle = value;
                RecalculateFormBoundaries();
            }
        }
 
        [Category("Drawer")]
        public Cursor DrawerHamburgerCursor { get; set; } = Cursors.Hand;
 
        [Category("Drawer")]
        public bool DrawerShowIconsWhenHidden
        {
            get => _drawerShowIconsWhenHidden;
            set
            {
                if (_drawerShowIconsWhenHidden == value)
                {
                    return;
                }
 
                _drawerShowIconsWhenHidden = value;
 
                if (drawerControl == null)
                {
                    return;
                }
 
                drawerControl.ShowIconsWhenHidden = _drawerShowIconsWhenHidden;
                drawerControl.Refresh();
            }
        }
 
        [Category("Drawer")]
        public int DrawerWidth { get; set; }
 
        [Category("Drawer")]
        public bool DrawerAutoHide
        {
            get => _drawerAutoHide;
            set => drawerControl.AutoHide = _drawerAutoHide = value;
        }
 
        [Category("Drawer")]
        public bool DrawerAutoShow
        {
            get => _drawerAutoShow;
            set => drawerControl.AutoShow = _drawerAutoShow = value;
        }
 
        [Category("Drawer")]
        public int DrawerIndicatorWidth { get; set; }
 
        [Category("Drawer")]
        public bool DrawerIsOpen
        {
            get => _drawerIsOpen;
            set
            {
                if (_drawerIsOpen == value)
                {
                    return;
                }
 
                _drawerIsOpen = value;
 
                if (value)
                {
                    drawerControl?.Show();
                }
                else
                {
                    drawerControl?.Hide();
                }
            }
        }
 
        [Category("Drawer")]
        public bool DrawerUseColors
        {
            get => _drawerUseColors;
            set
            {
                if (_drawerUseColors == value)
                {
                    return;
                }
 
                _drawerUseColors = value;
 
                if (drawerControl == null)
                {
                    return;
                }
 
                drawerControl.UseColors = value;
                drawerControl.Refresh();
            }
        }
 
        [Category("Drawer")]
        public bool DrawerHighlightWithAccent
        {
            get => _drawerHighlightWithAccent;
            set
            {
                if (_drawerHighlightWithAccent == value)
                {
                    return;
                }
 
                _drawerHighlightWithAccent = value;
 
                if (drawerControl == null)
                {
                    return;
                }
 
                drawerControl.HighlightWithAccent = value;
                drawerControl.Refresh();
            }
        }
 
        [Category("Drawer")]
        public bool DrawerBackgroundWithAccent
        {
            get => _backgroundWithAccent;
            set
            {
                if (_backgroundWithAccent == value)
                {
                    return;
                }
 
                _backgroundWithAccent = value;
 
                if (drawerControl == null)
                {
                    return;
                }
 
                drawerControl.BackgroundWithAccent = value;
                drawerControl.Refresh();
            }
        }
 
        [Category("Drawer")]
        public MaterialTabControl DrawerTabControl { get; set; }
 
        private string[] _DrawerHideTabName = new List<string>().ToArray();
 
        [Category("Drawer")]
        public string[] DrawerHideTabName
        {
            get => _DrawerHideTabName;
            set
            {
                _DrawerHideTabName = value;
                drawerControl.DrawerHideTabName = _DrawerHideTabName;
            }
        }
 
        private System.Windows.Forms.TabPage[] _DrawerNonClickTabPage = new List<System.Windows.Forms.TabPage>().ToArray();
 
        [Category("Drawer")]
        public System.Windows.Forms.TabPage[] DrawerNonClickTabPage
        {
            get => _DrawerNonClickTabPage;
            set
            {
                _DrawerNonClickTabPage = value;
                drawerControl.DrawerNonClickTabPage = _DrawerNonClickTabPage;
            }
        }
 
        public override string Text
        {
            get => base.Text;
            set { base.Text = value; Invalidate(); }
        }
 
        public new FormWindowState WindowState
        {
            get => base.WindowState;
            set => base.WindowState = value;
        }
 
        public new FormBorderStyle FormBorderStyle
        {
            get => base.FormBorderStyle;
            set => base.FormBorderStyle = value;
        }
 
        public Rectangle UserArea => new(ClientRectangle.X, ClientRectangle.Y + STATUS_BAR_HEIGHT + ACTION_BAR_HEIGHT, ClientSize.Width, ClientSize.Height - (STATUS_BAR_HEIGHT + ACTION_BAR_HEIGHT));
        #endregion
 
        #region Enums
        /// <summary>
        /// Window Messages
        /// <see href="https://docs.microsoft.com/en-us/windows/win32/winmsg/about-messages-and-message-queues"/>
        /// </summary>
        private enum WM
        {
            /// <summary>
            /// WM_NCCALCSIZE
            /// </summary>
            NonClientCalcSize = 0x0083,
            /// <summary>
            /// WM_NCACTIVATE
            /// </summary>
            NonClientActivate = 0x0086,
            /// <summary>
            /// WM_NCLBUTTONDOWN
            /// </summary>
            NonClientLeftButtonDown = 0x00A1,
            /// <summary>
            /// WM_SYSCOMMAND
            /// </summary>
            SystemCommand = 0x0112,
            /// <summary>
            /// WM_MOUSEMOVE
            /// </summary>
            MouseMove = 0x0200,
            /// <summary>
            /// WM_LBUTTONDOWN
            /// </summary>
            LeftButtonDown = 0x0201,
            /// <summary>
            /// WM_LBUTTONUP
            /// </summary>
            LeftButtonUp = 0x0202,
            /// <summary>
            /// WM_LBUTTONDBLCLK
            /// </summary>
            LeftButtonDoubleClick = 0x0203,
            /// <summary>
            /// WM_RBUTTONDOWN
            /// </summary>
            RightButtonDown = 0x0204,
            /// <summary>
            /// WM_ACTIVATEAPP
            /// </summary>
            ActivateApp = 0x001C
        }
 
        /// <summary>
        /// Hit Test Results
        /// <see href="https://docs.microsoft.com/en-us/windows/win32/inputdev/wm-nchittest"/>
        /// </summary>
        private enum HT
        {
            /// <summary>
            /// HTNOWHERE - Nothing under cursor
            /// </summary>
            None = 0,
            /// <summary>
            /// HTCAPTION - Titlebar
            /// </summary>
            Caption = 2,
            /// <summary>
            /// HTLEFT - Left border
            /// </summary>
            Left = 10,
            /// <summary>
            /// HTRIGHT - Right border
            /// </summary>
            Right = 11,
            /// <summary>
            /// HTTOP - Top border
            /// </summary>
            Top = 12,
            /// <summary>
            /// HTTOPLEFT - Top left corner
            /// </summary>
            TopLeft = 13,
            /// <summary>
            /// HTTOPRIGHT - Top right corner
            /// </summary>
            TopRight = 14,
            /// <summary>
            /// HTBOTTOM - Bottom border
            /// </summary>
            Bottom = 15,
            /// <summary>
            /// HTBOTTOMLEFT - Bottom left corner
            /// </summary>
            BottomLeft = 16,
            /// <summary>
            /// HTBOTTOMRIGHT - Bottom right corner
            /// </summary>
            BottomRight = 17,
        }
 
        /// <summary>
        /// Window Styles
        /// <see href="https://docs.microsoft.com/en-us/windows/win32/winmsg/window-styles"/>
        /// </summary>
        private enum WS
        {
            /// <summary>
            /// WS_MINIMIZEBOX - Allow minimizing from taskbar
            /// </summary>
            MinimizeBox = 0x20000,
            /// <summary>
            /// WS_SIZEFRAME - Required for Aero Snapping
            /// </summary>
            SizeFrame = 0x40000,
            /// <summary>
            /// WS_SYSMENU - Trigger the creation of the system menu
            /// </summary>
            SysMenu = 0x80000,
        }
 
        /// <summary>
        /// Track Popup Menu Flags
        /// <see href="https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-trackpopupmenu"/>
        /// </summary>
        private enum TPM
        {
            /// <summary>
            /// TPM_LEFTALIGN
            /// </summary>
            LeftAlign = 0x0000,
            /// <summary>
            /// TPM_RETURNCMD
            /// </summary>
            ReturnCommand = 0x0100,
        }
        #endregion
 
        #region Constants
        // Form Constants
        private const int BORDER_WIDTH = 7;
        private const int STATUS_BAR_BUTTON_WIDTH = 24;
        private const int STATUS_BAR_HEIGHT_DEFAULT = 24;
        private const int ICON_SIZE = 24;
        private const int PADDING_MINIMUM = 3;
        private const int TITLE_LEFT_PADDING = 72;
        private const int ACTION_BAR_PADDING = 16;
        private const int ACTION_BAR_HEIGHT_DEFAULT = 40;
        #endregion
 
        #region Private Fields
        private readonly Cursor[] _resizeCursors = { Cursors.SizeNESW, Cursors.SizeWE, Cursors.SizeNWSE, Cursors.SizeWE, Cursors.SizeNS };
 
        private ResizeDirection _resizeDir;
        private ButtonState _buttonState = ButtonState.None;
        private FormStyles _formStyle;
        private Rectangle _minButtonBounds => new(ClientSize.Width - (3 * STATUS_BAR_BUTTON_WIDTH), ClientRectangle.Y, STATUS_BAR_BUTTON_WIDTH, STATUS_BAR_HEIGHT);
        private Rectangle _maxButtonBounds => new(ClientSize.Width - (2 * STATUS_BAR_BUTTON_WIDTH), ClientRectangle.Y, STATUS_BAR_BUTTON_WIDTH, STATUS_BAR_HEIGHT);
        private Rectangle _xButtonBounds => new(ClientSize.Width - STATUS_BAR_BUTTON_WIDTH, ClientRectangle.Y, STATUS_BAR_BUTTON_WIDTH, STATUS_BAR_HEIGHT);
        private Rectangle _actionBarBounds => new(ClientRectangle.X, ClientRectangle.Y + STATUS_BAR_HEIGHT, ClientSize.Width, ACTION_BAR_HEIGHT);
        private Rectangle _drawerButtonBounds => new(ClientRectangle.X + (SkinManager.FORM_PADDING / 2) + 3, STATUS_BAR_HEIGHT + (ACTION_BAR_HEIGHT / 2) - (ACTION_BAR_HEIGHT_DEFAULT / 2), ACTION_BAR_HEIGHT_DEFAULT, ACTION_BAR_HEIGHT_DEFAULT);
        private Rectangle _statusBarBounds => new(ClientRectangle.X, ClientRectangle.Y, ClientSize.Width, STATUS_BAR_HEIGHT);
        private Rectangle _drawerIconRect;
 
        private bool Maximized
        {
            get => WindowState == FormWindowState.Maximized;
            set
            {
                if (!MaximizeBox || !ControlBox)
                {
                    return;
                }
 
                if (value)
                {
                    WindowState = FormWindowState.Maximized;
                }
                else
                {
                    WindowState = FormWindowState.Normal;
                }
            }
        }
        private Point _animationSource;
        private Padding originalPadding;
 
        private Form drawerOverlay = new();
        private MaterialDrawerForm drawerForm = new();
 
        // Drawer overlay and speed improvements
        private bool _drawerShowIconsWhenHidden;
        private bool _drawerAutoHide;
        private bool _drawerAutoShow;
        private bool _drawerIsOpen;
        private bool _drawerUseColors;
        private bool _drawerHighlightWithAccent;
        private bool _backgroundWithAccent;
        private MaterialDrawer drawerControl = new();
        private AnimationManager _drawerShowHideAnimManager;
        private readonly AnimationManager _clickAnimManager;
 
        private int STATUS_BAR_HEIGHT = 24;
        private int ACTION_BAR_HEIGHT = 40;
        #endregion
 
        public MaterialForm()
        {
            DrawerWidth = 200;
            DrawerIsOpen = false;
            DrawerAutoHide = true;
            DrawerAutoShow = false;
            DrawerIndicatorWidth = 0;
            DrawerHighlightWithAccent = true;
            DrawerShowIconsWhenHidden = false;
            DrawerBackgroundWithAccent = false;
 
            Sizable = true;
            DoubleBuffered = true;
            FormBorderStyle = FormBorderStyle.None;
            SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw, true);
            FormStyle = FormStyles.ActionBar_40;
 
            //Keep space for resize by mouse
            Padding = new Padding(PADDING_MINIMUM, STATUS_BAR_HEIGHT + ACTION_BAR_HEIGHT, PADDING_MINIMUM, PADDING_MINIMUM);
 
            _clickAnimManager = new AnimationManager()
            {
                AnimationType = AnimationType.EaseOut,
                Increment = 0.04
            };
            _clickAnimManager.OnAnimationProgress += sender => Invalidate();
 
            // Drawer
            Shown += (sender, e) =>
            {
                if (DesignMode || IsDisposed)
                {
                    return;
                }
 
                AddDrawerOverlayForm();
            };
        }
 
        #region Private Methods
        protected void AddDrawerOverlayForm()
        {
            if (DrawerTabControl == null)
            {
                return;
            }
 
            if (DrawerHideTabName.Any())
            {
                int countHideTab = 0;
 
                foreach (System.Windows.Forms.TabPage TP in DrawerTabControl.TabPages)
                {
                    if (DrawerHideTabName.Contains(TP.Name))
                    {
                        countHideTab++;
                    }
                }
 
                if (countHideTab >= DrawerTabControl.TabCount)
                {
                    return;
                }
            }
 
            // Form opacity fade animation;
            _drawerShowHideAnimManager = new AnimationManager
            {
                AnimationType = AnimationType.EaseInOut,
                Increment = 0.04
            };
 
            _drawerShowHideAnimManager.OnAnimationProgress += (sender) =>
            {
                drawerOverlay.Opacity = (float)(_drawerShowHideAnimManager.GetProgress() * 0.55f);
            };
 
            int H = ClientSize.Height - _statusBarBounds.Height - _actionBarBounds.Height;
            int Y = PointToScreen(Point.Empty).Y + _statusBarBounds.Height + _actionBarBounds.Height;
 
            // Overlay Form definitions
            drawerOverlay.BackColor = Color.Black;
            drawerOverlay.Opacity = 0;
            drawerOverlay.MinimizeBox = false;
            drawerOverlay.MaximizeBox = false;
            drawerOverlay.Text = "";
            drawerOverlay.ShowIcon = false;
            drawerOverlay.ControlBox = false;
            drawerOverlay.FormBorderStyle = FormBorderStyle.None;
            drawerOverlay.Visible = true;
            drawerOverlay.Size = new Size(ClientSize.Width, H);
            drawerOverlay.Location = new Point(PointToScreen(Point.Empty).X, Y);
            drawerOverlay.ShowInTaskbar = false;
            drawerOverlay.Owner = this;
            drawerOverlay.Anchor = AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right | AnchorStyles.Bottom;
 
            // Drawer Form definitions
            drawerForm.BackColor = Color.LimeGreen;
            drawerForm.TransparencyKey = Color.LimeGreen;
            drawerForm.MinimizeBox = false;
            drawerForm.MaximizeBox = false;
            drawerForm.Text = "";
            drawerForm.ShowIcon = false;
            drawerForm.ControlBox = false;
            drawerForm.FormBorderStyle = FormBorderStyle.None;
            drawerForm.Visible = true;
            drawerForm.Size = new Size(DrawerWidth, H);
            drawerForm.Location = new Point(PointToScreen(Point.Empty).X, Y);
            drawerForm.ShowInTaskbar = false;
            drawerForm.Owner = this; //drawerOverlay
            drawerForm.TopMost = TopMost;
            drawerForm.Anchor = AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right | AnchorStyles.Bottom;
 
            // Add drawer to overlay form
            drawerForm.Controls.Add(drawerControl);
            drawerControl.Location = new Point(0, 0);
            drawerControl.Size = new Size(DrawerWidth, H);
            drawerControl.Anchor = AnchorStyles.Top | AnchorStyles.Bottom;
            drawerControl.BaseTabControl = DrawerTabControl;
            drawerControl.DrawerHideTabName = DrawerHideTabName;
            drawerControl.DrawerNonClickTabPage = DrawerNonClickTabPage;
            drawerControl.ShowIconsWhenHidden = true;
 
            // Init Options
            drawerControl.IsOpen = DrawerIsOpen;
            drawerControl.ShowIconsWhenHidden = DrawerShowIconsWhenHidden;
            drawerControl.AutoHide = DrawerAutoHide;
            drawerControl.AutoShow = DrawerAutoShow;
            drawerControl.IndicatorWidth = DrawerIndicatorWidth;
            drawerControl.HighlightWithAccent = DrawerHighlightWithAccent;
            drawerControl.BackgroundWithAccent = DrawerBackgroundWithAccent;
 
            // Changing colors or theme
            SkinManager.ThemeChanged += sender =>
            {
                drawerForm.Refresh();
            };
            SkinManager.ColorSchemeChanged += sender =>
            {
                drawerForm.Refresh();
            };
 
            // Visible, Resize and move events
            VisibleChanged += (sender, e) =>
            {
                drawerForm.Visible = Visible;
                drawerOverlay.Visible = Visible;
            };
 
            Resize += (sender, e) =>
            {
                H = ClientSize.Height - _statusBarBounds.Height - _actionBarBounds.Height;
                drawerForm.Size = new Size(DrawerWidth, H);
                drawerOverlay.Size = new Size(ClientSize.Width, H);
            };
 
            Move += (sender, e) =>
            {
                Point pos = new(PointToScreen(Point.Empty).X, PointToScreen(Point.Empty).Y + _statusBarBounds.Height + _actionBarBounds.Height);
                drawerForm.Location = pos;
                drawerOverlay.Location = pos;
            };
 
            // Close when click outside menu
            drawerOverlay.Click += (sender, e) =>
            {
                drawerControl.Hide();
            };
 
            //Resize form when mouse over drawer
            drawerControl.MouseDown += (sender, e) =>
            {
                ResizeForm(_resizeDir);
            };
 
            // Animation and visibility
            drawerControl.DrawerBeginOpen += (sender) =>
            {
                _drawerShowHideAnimManager.StartNewAnimation(AnimationDirection.In);
            };
 
            drawerControl.DrawerBeginClose += (sender) =>
            {
                _drawerShowHideAnimManager.StartNewAnimation(AnimationDirection.Out);
            };
            drawerControl.CursorUpdate += (sender, drawerCursor) =>
            {
                if (Sizable && !Maximized)
                {
                    if (drawerCursor == Cursors.SizeNESW)
                    {
                        _resizeDir = ResizeDirection.BottomLeft;
                    }
                    else if (drawerCursor == Cursors.SizeWE)
                    {
                        _resizeDir = ResizeDirection.Left;
                    }
                    else if (drawerCursor == Cursors.SizeNS)
                    {
                        _resizeDir = ResizeDirection.Bottom;
                    }
                    else
                    {
                        _resizeDir = ResizeDirection.None;
                    }
                }
                else
                {
                    _resizeDir = ResizeDirection.None;
                }
 
                Cursor = drawerCursor;
            };
 
            // Form Padding corrections
 
            if (Padding.Top < (_statusBarBounds.Height + _actionBarBounds.Height))
            {
                Padding = new Padding(Padding.Left, _statusBarBounds.Height + _actionBarBounds.Height, Padding.Right, Padding.Bottom);
            }
 
            originalPadding = Padding;
 
            drawerControl.DrawerShowIconsWhenHiddenChanged += FixFormPadding;
            FixFormPadding(this);
 
            // Fix Closing the Drawer or Overlay form with Alt+F4 not exiting the app
            drawerOverlay.FormClosed += TerminateOnClose;
            drawerForm.FormClosed += TerminateOnClose;
            drawerForm.Attach(drawerControl);
        }
 
        private void TerminateOnClose(object sender, FormClosedEventArgs e)
        {
            Application.Exit();
        }
 
        private void FixFormPadding(object sender)
        {
            if (drawerControl.ShowIconsWhenHidden)
            {
                Padding = new Padding(Padding.Left < drawerControl.MinWidth ? drawerControl.MinWidth : Padding.Left, originalPadding.Top, originalPadding.Right, originalPadding.Bottom);
            }
            else
            {
                Padding = new Padding(PADDING_MINIMUM, originalPadding.Top, originalPadding.Right, originalPadding.Bottom);
            }
        }
 
        private void UpdateButtons(MouseButtons button, Point location, bool up = false)
        {
            if (DesignMode)
            {
                return;
            }
 
            ButtonState oldState = _buttonState;
            bool showMin = MinimizeBox && ControlBox;
            bool showMax = MaximizeBox && ControlBox;
 
            if (button == MouseButtons.Left && !up)
            {
                if (showMin && !showMax && _maxButtonBounds.Contains(location))
                {
                    _buttonState = ButtonState.MinDown;
                }
                else if (showMin && showMax && _minButtonBounds.Contains(location))
                {
                    _buttonState = ButtonState.MinDown;
                }
                else if (showMax && _maxButtonBounds.Contains(location))
                {
                    _buttonState = ButtonState.MaxDown;
                }
                else if (ControlBox && _xButtonBounds.Contains(location))
                {
                    _buttonState = ButtonState.XDown;
                }
                else if (_drawerButtonBounds.Contains(location))
                {
                    _buttonState = ButtonState.DrawerDown;
                }
                else
                {
                    _buttonState = ButtonState.None;
                }
            }
            else
            {
                if (showMin && !showMax && _maxButtonBounds.Contains(location))
                {
                    _buttonState = ButtonState.MinOver;
 
                    if (oldState == ButtonState.MinDown && up)
                    {
                        WindowState = FormWindowState.Minimized;
                    }
                }
                else if (showMin && showMax && _minButtonBounds.Contains(location))
                {
                    _buttonState = ButtonState.MinOver;
 
                    if (oldState == ButtonState.MinDown && up)
                    {
                        WindowState = FormWindowState.Minimized;
                    }
                }
                else if (showMax && _maxButtonBounds.Contains(location))
                {
                    _buttonState = ButtonState.MaxOver;
 
                    if (oldState == ButtonState.MaxDown && up)
                    {
                        Maximized = !Maximized;
                    }
                }
                else if (ControlBox && _xButtonBounds.Contains(location))
                {
                    _buttonState = ButtonState.XOver;
 
                    if (oldState == ButtonState.XDown && up)
                    {
                        Close();
                    }
                }
                else if (_drawerButtonBounds.Contains(location))
                {
                    _buttonState = ButtonState.DrawerOver;
                }
                else
                {
                    _buttonState = ButtonState.None;
                }
            }
 
            if (oldState != _buttonState)
            {
                Invalidate();
            }
        }
 
        private void ResizeForm(ResizeDirection direction)
        {
            if (DesignMode)
            {
                return;
            }
 
            int dir = -1;
            switch (direction)
            {
                case ResizeDirection.BottomLeft:
                    dir = (int)HT.BottomLeft;
                    Cursor = Cursors.SizeNESW;
                    break;
 
                case ResizeDirection.Left:
                    dir = (int)HT.Left;
                    Cursor = Cursors.SizeWE;
                    break;
 
                case ResizeDirection.Right:
                    dir = (int)HT.Right;
                    break;
 
                case ResizeDirection.BottomRight:
                    dir = (int)HT.BottomRight;
                    break;
 
                case ResizeDirection.Bottom:
                    dir = (int)HT.Bottom;
                    break;
 
                case ResizeDirection.Top:
                    dir = (int)HT.Top;
                    break;
 
                case ResizeDirection.TopLeft:
                    dir = (int)HT.TopLeft;
                    break;
 
                case ResizeDirection.TopRight:
                    dir = (int)HT.TopRight;
                    break;
            }
 
            ReleaseCapture();
            if (dir != -1)
            {
                SendMessage(Handle, (int)WM.NonClientLeftButtonDown, dir, 0);
            }
        }
 
        private void RecalculateFormBoundaries()
        {
            switch (_formStyle)
            {
                case FormStyles.StatusAndActionBar_None:
                    ACTION_BAR_HEIGHT = 0;
                    STATUS_BAR_HEIGHT = 0;
                    break;
                case FormStyles.ActionBar_None:
                    ACTION_BAR_HEIGHT = 0;
                    STATUS_BAR_HEIGHT = STATUS_BAR_HEIGHT_DEFAULT;
                    break;
                case FormStyles.ActionBar_40:
                    ACTION_BAR_HEIGHT = ACTION_BAR_HEIGHT_DEFAULT;
                    STATUS_BAR_HEIGHT = STATUS_BAR_HEIGHT_DEFAULT;
                    break;
                case FormStyles.ActionBar_48:
                    ACTION_BAR_HEIGHT = 48;
                    STATUS_BAR_HEIGHT = STATUS_BAR_HEIGHT_DEFAULT;
                    break;
                case FormStyles.ActionBar_56:
                    ACTION_BAR_HEIGHT = 56;
                    STATUS_BAR_HEIGHT = STATUS_BAR_HEIGHT_DEFAULT;
                    break;
                case FormStyles.ActionBar_64:
                    ACTION_BAR_HEIGHT = 64;
                    STATUS_BAR_HEIGHT = STATUS_BAR_HEIGHT_DEFAULT;
                    break;
                default:
                    ACTION_BAR_HEIGHT = ACTION_BAR_HEIGHT_DEFAULT;
                    STATUS_BAR_HEIGHT = STATUS_BAR_HEIGHT_DEFAULT;
                    break;
            }
 
            Padding = new Padding(_drawerShowIconsWhenHidden ? drawerControl.MinWidth : PADDING_MINIMUM, STATUS_BAR_HEIGHT + ACTION_BAR_HEIGHT, Padding.Right, Padding.Bottom);
            originalPadding = Padding;
 
            if (DrawerTabControl != null)
            {
                int height = ClientSize.Height - (STATUS_BAR_HEIGHT + ACTION_BAR_HEIGHT);
                Point location = Point.Add(Location, new Size(0, STATUS_BAR_HEIGHT + ACTION_BAR_HEIGHT));
                drawerOverlay.Size = new Size(ClientSize.Width, height);
                drawerOverlay.Location = location;
                drawerForm.Size = new Size(DrawerWidth, height);
                drawerForm.Location = location;
            }
 
            Invalidate();
        }
        #endregion
 
        #region WinForms Methods
        protected override CreateParams CreateParams
        {
            get
            {
                CreateParams par = base.CreateParams;
                par.Style |= (int)WS.MinimizeBox | (int)WS.SysMenu;
                return par;
            }
        }
 
        protected override void OnCreateControl()
        {
            base.OnCreateControl();
 
            // Sets the Window Style for having a Size Frame after the form is created
            // This prevents unexpected sizing while still allowing for Aero Snapping
            long flags = GetWindowLongPtr(Handle, -16).ToInt64();
            SetWindowLongPtr(Handle, -16, (IntPtr)(flags | (int)WS.SizeFrame));
        }
 
        protected override void WndProc(ref Message m)
        {
            WM message = (WM)m.Msg;
            // Prevent the base class from receiving the message
            if (message == WM.NonClientCalcSize)
            {
                return;
            }
 
            // https://docs.microsoft.com/en-us/windows/win32/winmsg/wm-ncactivate?redirectedfrom=MSDN#parameters
            // "If this parameter is set to -1, DefWindowProc does not repaint the nonclient area to reflect the state change."
            if (message == WM.NonClientActivate)
            {
                m.Result = new IntPtr(-1);
                return;
            }
 
            base.WndProc(ref m);
            if (DesignMode || IsDisposed)
            {
                return;
            }
 
            Point cursorPos = PointToClient(Cursor.Position);
            bool isOverCaption = (_statusBarBounds.Contains(cursorPos) || _actionBarBounds.Contains(cursorPos)) &&
                !(_minButtonBounds.Contains(cursorPos) || _maxButtonBounds.Contains(cursorPos) || _xButtonBounds.Contains(cursorPos));
 
            // Drawer
            if (DrawerTabControl != null && (message == WM.LeftButtonDown || message == WM.LeftButtonDoubleClick) && _drawerIconRect.Contains(cursorPos))
            {
                drawerControl.Toggle();
                _clickAnimManager.SetProgress(0);
                _clickAnimManager.StartNewAnimation(AnimationDirection.In);
                _animationSource = cursorPos;
            }
            // Form blocked in minimized state (privilege mode)
            else if (WindowState == FormWindowState.Minimized && message == WM.ActivateApp)
            {
                drawerOverlay.Invalidate();
                drawerOverlay.Update();
                drawerForm.Invalidate();
                drawerForm.Update();
                this.Invalidate();
                this.Update();
            }
            // Double click to maximize
            else if (message == WM.LeftButtonDoubleClick && isOverCaption)
            {
                Maximized = !Maximized;
            }
            // Treat the Caption as if it was Non-Client
            else if (message == WM.LeftButtonDown && isOverCaption)
            {
                ReleaseCapture();
                SendMessage(Handle, (int)WM.NonClientLeftButtonDown, (int)HT.Caption, 0);
            }
            // Default context menu
            else if (message == WM.RightButtonDown)
            {
                if (_statusBarBounds.Contains(cursorPos) && !_minButtonBounds.Contains(cursorPos) &&
                    !_maxButtonBounds.Contains(cursorPos) && !_xButtonBounds.Contains(cursorPos))
                {
                    // Temporary disable user defined ContextMenuStrip
                    ContextMenuStrip user_cms = base.ContextMenuStrip;
                    base.ContextMenuStrip = null;
 
                    // Show default system menu when right clicking titlebar
                    int id = TrackPopupMenuEx(GetSystemMenu(Handle, false), (int)TPM.LeftAlign | (int)TPM.ReturnCommand, Cursor.Position.X, Cursor.Position.Y, Handle, IntPtr.Zero);
 
                    // Pass the command as a WM_SYSCOMMAND message
                    SendMessage(Handle, (int)WM.SystemCommand, id, 0);
 
                    // restore user defined ContextMenuStrip
                    base.ContextMenuStrip = user_cms;
                }
            }
        }
 
        protected override void OnMove(EventArgs e)
        {
            // Empty Point ensures the screen maximizes to the top left of the current screen
            MaximizedBounds = new Rectangle(Point.Empty, Screen.GetWorkingArea(Location).Size);
            base.OnMove(e);
        }
 
        protected override void OnMouseDown(MouseEventArgs e)
        {
            if (DesignMode)
            {
                return;
            }
 
            UpdateButtons(e.Button, e.Location);
 
            if (e.Button == MouseButtons.Left && !Maximized && _resizeCursors.Contains(Cursor))
            {
                ResizeForm(_resizeDir);
            }
 
            base.OnMouseDown(e);
        }
 
        protected override void OnMouseEnter(EventArgs e)
        {
            base.OnMouseEnter(e);
            Cursor = Cursors.Default;
        }
 
        protected override void OnMouseLeave(EventArgs e)
        {
            base.OnMouseLeave(e);
            if (DesignMode)
            {
                return;
            }
 
            _buttonState = ButtonState.None;
            _resizeDir = ResizeDirection.None;
            //Only reset the cursor when needed
            if (_resizeCursors.Contains(Cursor))
            {
                Cursor = Cursors.Default;
            }
 
            Invalidate();
        }
 
        protected override void OnMouseMove(MouseEventArgs e)
        {
            base.OnMouseMove(e);
 
            if (DesignMode)
            {
                return;
            }
 
            Point coords = e.Location;
 
            UpdateButtons(e.Button, coords);
 
            if (DrawerTabControl != null && _drawerIconRect.Contains(e.Location))
            {
                Cursor = DrawerHamburgerCursor;
            }
            else
            {
                Cursor = Cursors.Default;
            }
 
            if (!Sizable)
            {
                return;
            }
 
            //True if the mouse is hovering over a child control
            bool isChildUnderMouse = GetChildAtPoint(coords) != null;
 
            if (!isChildUnderMouse && !Maximized && coords.Y < BORDER_WIDTH && coords.X > BORDER_WIDTH && coords.X < ClientSize.Width - BORDER_WIDTH)
            {
                _resizeDir = ResizeDirection.Top;
                Cursor = Cursors.SizeNS;
            }
            else if (!isChildUnderMouse && !Maximized && coords.X <= BORDER_WIDTH && coords.Y < BORDER_WIDTH)
            {
                _resizeDir = ResizeDirection.TopLeft;
                Cursor = Cursors.SizeNWSE;
            }
            else if (!isChildUnderMouse && !Maximized && coords.X >= ClientSize.Width - BORDER_WIDTH && coords.Y < BORDER_WIDTH)
            {
                _resizeDir = ResizeDirection.TopRight;
                Cursor = Cursors.SizeNESW;
            }
            else if (!isChildUnderMouse && !Maximized && coords.X <= BORDER_WIDTH && coords.Y >= ClientSize.Height - BORDER_WIDTH)
            {
                _resizeDir = ResizeDirection.BottomLeft;
                Cursor = Cursors.SizeNESW;
            }
            else if ((!isChildUnderMouse || DrawerTabControl != null) && !Maximized && coords.X <= BORDER_WIDTH)
            {
                _resizeDir = ResizeDirection.Left;
                Cursor = Cursors.SizeWE;
            }
            else if (!isChildUnderMouse && !Maximized && coords.X >= ClientSize.Width - BORDER_WIDTH && coords.Y >= ClientSize.Height - BORDER_WIDTH)
            {
                _resizeDir = ResizeDirection.BottomRight;
                Cursor = Cursors.SizeNWSE;
            }
            else if (!isChildUnderMouse && !Maximized && coords.X >= ClientSize.Width - BORDER_WIDTH)
            {
                _resizeDir = ResizeDirection.Right;
                Cursor = Cursors.SizeWE;
            }
            else if (!isChildUnderMouse && !Maximized && coords.Y >= ClientSize.Height - BORDER_WIDTH)
            {
                _resizeDir = ResizeDirection.Bottom;
                Cursor = Cursors.SizeNS;
            }
            else
            {
                _resizeDir = ResizeDirection.None;
 
                //Only reset the cursor when needed, this prevents it from flickering when a child control changes the cursor to its own needs
                if (_resizeCursors.Contains(Cursor))
                {
                    Cursor = Cursors.Default;
                }
            }
        }
 
        protected override void OnMouseUp(MouseEventArgs e)
        {
            if (DesignMode)
            {
                return;
            }
 
            UpdateButtons(e.Button, e.Location, true);
 
            base.OnMouseUp(e);
            ReleaseCapture();
        }
 
        protected override void OnPaint(PaintEventArgs e)
        {
            Brush hoverBrush = SkinManager.BackgroundHoverBrush;
            Brush downBrush = SkinManager.BackgroundFocusBrush;
            Graphics g = e.Graphics;
            g.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;
 
            g.Clear(SkinManager.BackdropColor);
 
            //Draw border
            using (Pen borderPen = new(SkinManager.DividersColor, 1))
            {
                g.DrawLine(borderPen, new Point(0, _actionBarBounds.Bottom), new Point(0, ClientSize.Height - 2));
                g.DrawLine(borderPen, new Point(ClientSize.Width - 1, _actionBarBounds.Bottom), new Point(ClientSize.Width - 1, ClientSize.Height - 2));
                g.DrawLine(borderPen, new Point(0, ClientSize.Height - 1), new Point(ClientSize.Width - 1, ClientSize.Height - 1));
            }
 
            if (_formStyle != FormStyles.StatusAndActionBar_None)
            {
                if (ControlBox)
                {
                    g.FillRectangle(SkinManager.ColorScheme.DarkPrimaryBrush, _statusBarBounds);
                    g.FillRectangle(SkinManager.ColorScheme.PrimaryBrush, _actionBarBounds);
                }
 
                // Determine whether or not we even should be drawing the buttons.
                bool showMin = MinimizeBox && ControlBox;
                bool showMax = MaximizeBox && ControlBox;
 
                // When MaximizeButton == false, the minimize button will be painted in its place
                if (_buttonState == ButtonState.MinOver && showMin)
                {
                    g.FillRectangle(hoverBrush, showMax ? _minButtonBounds : _maxButtonBounds);
                }
 
                if (_buttonState == ButtonState.MinDown && showMin)
                {
                    g.FillRectangle(downBrush, showMax ? _minButtonBounds : _maxButtonBounds);
                }
 
                if (_buttonState == ButtonState.MaxOver && showMax)
                {
                    g.FillRectangle(hoverBrush, _maxButtonBounds);
                }
 
                if (_buttonState == ButtonState.MaxDown && showMax)
                {
                    g.FillRectangle(downBrush, _maxButtonBounds);
                }
 
                if (_buttonState == ButtonState.XOver && ControlBox)
                {
                    g.FillRectangle(SkinManager.BackgroundHoverRedBrush, _xButtonBounds);
                }
 
                if (_buttonState == ButtonState.XDown && ControlBox)
                {
                    g.FillRectangle(SkinManager.BackgroundDownRedBrush, _xButtonBounds);
                }
 
                using Pen formButtonsPen = new(SkinManager.ColorScheme.TextColor, 2);
                // Minimize button.
                if (showMin)
                {
                    int x = showMax ? _minButtonBounds.X : _maxButtonBounds.X;
                    int y = showMax ? _minButtonBounds.Y : _maxButtonBounds.Y;
 
                    g.DrawLine(
                        formButtonsPen,
                        x + (int)(_minButtonBounds.Width * 0.33),
                        y + (int)(_minButtonBounds.Height * 0.66),
                        x + (int)(_minButtonBounds.Width * 0.66),
                        y + (int)(_minButtonBounds.Height * 0.66)
                   );
                }
 
                // Maximize button
                if (showMax)
                {
                    if (WindowState != FormWindowState.Maximized)
                    {
                        g.DrawRectangle(
                            formButtonsPen,
                            _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.33),
                            _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.36),
                            (int)(_maxButtonBounds.Width * 0.39),
                            (int)(_maxButtonBounds.Height * 0.31)
                        );
                    }
                    else
                    {
                        // Change position of square
                        g.DrawRectangle(
                            formButtonsPen,
                            _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.30),
                            _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.42),
                            (int)(_maxButtonBounds.Width * 0.40),
                            (int)(_maxButtonBounds.Height * 0.32)
                        );
                        // Draw lines for background square
                        g.DrawLine(formButtonsPen,
                            _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.42),
                            _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.30),
                            _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.42),
                            _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.38)
                        );
                        g.DrawLine(formButtonsPen,
                            _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.40),
                            _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.30),
                            _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.86),
                            _maxButtonBounds.Y + (int)(_maxButtonBounds.Width * 0.30)
                        );
                        g.DrawLine(formButtonsPen,
                            _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.82),
                            _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.28),
                            _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.82),
                            _maxButtonBounds.Y + (int)(_maxButtonBounds.Width * 0.64)
                        );
                        g.DrawLine(formButtonsPen,
                            _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.70),
                            _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.62),
                            _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.84),
                            _maxButtonBounds.Y + (int)(_maxButtonBounds.Width * 0.62)
                        );
                    }
                }
 
                // Close button
                if (ControlBox)
                {
                    g.DrawLine(
                        formButtonsPen,
                        _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.33),
                        _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.33),
                        _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.66),
                        _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.66)
                   );
 
                    g.DrawLine(
                        formButtonsPen,
                        _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.66),
                        _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.33),
                        _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.33),
                        _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.66));
                }
            }
 
            // Drawer Icon
            if (DrawerTabControl != null && _formStyle != FormStyles.ActionBar_None && _formStyle != FormStyles.StatusAndActionBar_None)
            {
                if (_buttonState == ButtonState.DrawerOver)
                {
                    g.FillRectangle(hoverBrush, _drawerButtonBounds);
                }
 
                if (_buttonState == ButtonState.DrawerDown)
                {
                    g.FillRectangle(downBrush, _drawerButtonBounds);
                }
 
                _drawerIconRect = new Rectangle(SkinManager.FORM_PADDING / 2, STATUS_BAR_HEIGHT, ACTION_BAR_HEIGHT_DEFAULT, ACTION_BAR_HEIGHT);
                // Ripple
                if (_clickAnimManager.IsAnimating())
                {
                    double clickAnimProgress = _clickAnimManager.GetProgress();
 
                    SolidBrush rippleBrush = new(Color.FromArgb((int)(51 - (clickAnimProgress * 50)), Color.White));
                    int rippleSize = (int)(clickAnimProgress * _drawerIconRect.Width * 1.75);
 
                    g.SetClip(_drawerIconRect);
                    g.FillEllipse(rippleBrush, new Rectangle(_animationSource.X - (rippleSize / 2), _animationSource.Y - (rippleSize / 2), rippleSize, rippleSize));
                    g.ResetClip();
                    rippleBrush.Dispose();
                }
 
                using Pen formButtonsPen = new(SkinManager.ColorScheme.TextColor, 2);
                // Middle line
                g.DrawLine(
                   formButtonsPen,
                   _drawerIconRect.X + (int)SkinManager.FORM_PADDING,
                   _drawerIconRect.Y + (int)(ACTION_BAR_HEIGHT / 2),
                   _drawerIconRect.X + (int)SkinManager.FORM_PADDING + 18,
                   _drawerIconRect.Y + (int)(ACTION_BAR_HEIGHT / 2));
 
                // Bottom line
                g.DrawLine(
                   formButtonsPen,
                   _drawerIconRect.X + (int)SkinManager.FORM_PADDING,
                   _drawerIconRect.Y + (int)(ACTION_BAR_HEIGHT / 2) - 6,
                   _drawerIconRect.X + (int)SkinManager.FORM_PADDING + 18,
                   _drawerIconRect.Y + (int)(ACTION_BAR_HEIGHT / 2) - 6);
 
                // Top line
                g.DrawLine(
                   formButtonsPen,
                   _drawerIconRect.X + (int)SkinManager.FORM_PADDING,
                   _drawerIconRect.Y + (int)(ACTION_BAR_HEIGHT / 2) + 6,
                   _drawerIconRect.X + (int)SkinManager.FORM_PADDING + 18,
                   _drawerIconRect.Y + (int)(ACTION_BAR_HEIGHT / 2) + 6);
            }
 
            if (ControlBox == true && _formStyle != FormStyles.ActionBar_None && _formStyle != FormStyles.StatusAndActionBar_None)
            {
                //Form title
                using MaterialNativeTextRenderer NativeText = new(g);
                Rectangle textLocation = new(DrawerTabControl != null ? TITLE_LEFT_PADDING : TITLE_LEFT_PADDING - (ICON_SIZE + (ACTION_BAR_PADDING * 2)), STATUS_BAR_HEIGHT, ClientSize.Width, ACTION_BAR_HEIGHT);
                NativeText.DrawTransparentText(Text, SkinManager.GetLogFontByType(MaterialSkinManager.FontType.H6),
                    SkinManager.ColorScheme.TextColor,
                    textLocation.Location,
                    textLocation.Size,
                    MaterialNativeTextRenderer.TextAlignFlags.Left | MaterialNativeTextRenderer.TextAlignFlags.Middle);
            }
        }
        #endregion
 
        #region Low Level Windows Methods
        /// <summary>
        ///     Provides a single method to call either the 32-bit or 64-bit method based on the size of an <see cref="IntPtr"/> for getting the
        ///     Window Style flags.<br/>
        ///     <see href="https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getwindowlongptra">GetWindowLongPtr</see>
        /// </summary>
        private static IntPtr GetWindowLongPtr(IntPtr hWnd, int nIndex)
        {
            if (IntPtr.Size == 8)
            {
                return GetWindowLongPtr64(hWnd, nIndex);
            }
            else
            {
                return GetWindowLong(hWnd, nIndex);
            }
        }
 
        /// <summary>
        ///     Provides a single method to call either the 32-bit or 64-bit method based on the size of an <see cref="IntPtr"/> for setting the
        ///     Window Style flags.<br/>
        ///     <see href="https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setwindowlongptra">SetWindowLongPtr</see>
        /// </summary>
        private static IntPtr SetWindowLongPtr(IntPtr hWnd, int nIndex, IntPtr dwNewLong)
        {
            if (IntPtr.Size == 8)
            {
                return SetWindowLongPtr64(hWnd, nIndex, dwNewLong);
            }
            else
            {
                return SetWindowLong(hWnd, nIndex, dwNewLong.ToInt32());
            }
        }
 
        [DllImport("user32.dll", EntryPoint = "GetWindowLong")]
        private static extern IntPtr GetWindowLong(IntPtr hWnd, int nIndex);
 
        [DllImport("user32.dll", EntryPoint = "GetWindowLongPtr")]
        private static extern IntPtr GetWindowLongPtr64(IntPtr hWnd, int nIndex);
 
        [DllImport("user32.dll", EntryPoint = "SetWindowLong")]
        private static extern IntPtr SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
 
        [DllImport("user32.dll", EntryPoint = "SetWindowLongPtr")]
        private static extern IntPtr SetWindowLongPtr64(IntPtr hWnd, int nIndex, IntPtr dwNewLong);
 
        [DllImport("user32.dll")]
        private static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
 
        [DllImport("user32.dll")]
        private static extern bool ReleaseCapture();
 
        [DllImport("user32.dll")]
        private static extern int TrackPopupMenuEx(IntPtr hmenu, uint fuFlags, int x, int y, IntPtr hwnd, IntPtr lptpm);
 
        [DllImport("user32.dll")]
        private static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);
        #endregion
    }
 
    #endregion
}