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
// COPYRIGHT (C) Tom. ALL RIGHTS RESERVED.
// THE AntdUI PROJECT IS AN WINFORM LIBRARY LICENSED UNDER THE Apache-2.0 License.
// LICENSED UNDER THE Apache License, VERSION 2.0 (THE "License")
// YOU MAY NOT USE THIS FILE EXCEPT IN COMPLIANCE WITH THE License.
// YOU MAY OBTAIN A COPY OF THE LICENSE AT
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, SOFTWARE
// DISTRIBUTED UNDER THE LICENSE IS DISTRIBUTED ON AN "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
// SEE THE LICENSE FOR THE SPECIFIC LANGUAGE GOVERNING PERMISSIONS AND
// LIMITATIONS UNDER THE License.
// GITEE: https://gitee.com/antdui/AntdUI
// GITHUB: https://github.com/AntdUI/AntdUI
// CSDN: https://blog.csdn.net/v_132
// QQ: 17379620
 
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using Vanara.PInvoke;
using static Vanara.PInvoke.DwmApi;
using static Vanara.PInvoke.User32;
 
namespace AntdUI
{
    public class BorderlessForm : BaseForm, IMessageFilter
    {
        public BorderlessForm()
        {
            SetStyle(
                ControlStyles.UserPaint |
                ControlStyles.AllPaintingInWmPaint |
                ControlStyles.OptimizedDoubleBuffer |
                ControlStyles.ResizeRedraw |
                ControlStyles.DoubleBuffer, true);
            UpdateStyles();
            base.FormBorderStyle = FormBorderStyle.None;
        }
 
        #region 属性
 
        [Browsable(false)]
        [EditorBrowsable(EditorBrowsableState.Never)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public new FormBorderStyle FormBorderStyle
        {
            get => base.FormBorderStyle;
        }
 
        bool CanMessageFilter => DwmEnabled || shadow < 4;
 
        int shadow = 10;
        /// <summary>
        /// 阴影大小
        /// </summary>
        [Description("阴影大小"), Category("外观"), DefaultValue(10)]
        public int Shadow
        {
            get => shadow;
            set
            {
                if (shadow == value) return;
                shadow = value;
                if (DwmEnabled) return;
                if (value > 0)
                {
                    ShowSkin();
                    skin?.ISize();
                    skin?.ClearShadow();
                    skin?.Print();
                }
                else
                {
                    skin?.Close();
                    skin = null;
                }
            }
        }
 
        /// <summary>
        /// 使用DWM阴影
        /// </summary>
        [Description("使用DWM阴影"), Category("行为"), DefaultValue(true)]
        public bool UseDwm { get; set; } = true;
 
        [Description("鼠标穿透"), Category("行为"), DefaultValue(false)]
        public bool ShadowPierce { get; set; }
 
        Color shadowColor = Color.FromArgb(100, 0, 0, 0);
        /// <summary>
        /// 阴影颜色
        /// </summary>
        [Description("阴影颜色"), Category("外观"), DefaultValue(typeof(Color), "100, 0, 0, 0")]
        public Color ShadowColor
        {
            get => shadowColor;
            set
            {
                if (shadowColor == value) return;
                shadowColor = value;
                skin?.ClearShadow();
                skin?.Print();
            }
        }
 
        int borderWidth = 1;
        [Description("边框宽度"), Category("外观"), DefaultValue(1)]
        public int BorderWidth
        {
            get => borderWidth;
            set
            {
                if (borderWidth == value) return;
                borderWidth = value;
                skin?.Print();
            }
        }
 
        Color borderColor = Color.FromArgb(180, 0, 0, 0);
        /// <summary>
        /// 边框颜色
        /// </summary>
        [Description("边框颜色"), Category("外观"), DefaultValue(typeof(Color), "180, 0, 0, 0")]
        public Color BorderColor
        {
            get => borderColor;
            set
            {
                if (borderColor == value) return;
                borderColor = value;
                skin?.Print();
            }
        }
 
        int radius = 0;
        /// <summary>
        /// 圆角
        /// </summary>
        [Description("圆角"), Category("外观"), DefaultValue(0)]
        public int Radius
        {
            get => radius;
            set
            {
                if (radius == value) return;
                radius = value;
                SetReion();
                skin?.ClearShadow();
                skin?.Print();
            }
        }
 
        #endregion
 
        #region 重载事件
 
        bool DwmEnabled = false;
        protected override void OnCreateControl()
        {
            base.OnCreateControl();
            SetReion();
            ShowSkin();
        }
 
        protected override void OnClosed(EventArgs e)
        {
            base.OnClosed(e);
            skin?.Close();
            skin = null;
        }
 
        protected override void OnVisibleChanged(EventArgs e)
        {
            if (Visible && shadow > 0 && !DesignMode) ShowSkin();
            else
            {
                if (skin != null) skin.Visible = false;
            }
            base.OnVisibleChanged(e);
        }
 
        BorderlessFormShadow? skin = null;
        void ShowSkin()
        {
            if (DwmEnabled) return;
            if (Visible && WindowState == FormWindowState.Normal && shadow > 0 && !DesignMode)
            {
                if (skin != null) skin.Visible = true;
                else
                {
                    skin = new BorderlessFormShadow(this);
                    skin.Show(this);
                }
            }
        }
 
        protected override void OnLocationChanged(EventArgs e)
        {
            skin?.OnLocationChange();
            base.OnLocationChanged(e);
        }
 
        protected override void OnSizeChanged(EventArgs e)
        {
            skin?.OnSizeChange();
            SetReion();
            base.OnSizeChanged(e);
        }
 
        internal HWND handle { get; private set; }
        readonly IntPtr TRUE = new IntPtr(1);
 
        protected override void WndProc(ref System.Windows.Forms.Message m)
        {
            var msg = (WindowMessage)m.Msg;
            switch (msg)
            {
                case WindowMessage.WM_ERASEBKGND:
                    m.Result = IntPtr.Zero;
                    return;
                case WindowMessage.WM_ACTIVATE:
                case WindowMessage.WM_NCPAINT:
                    DwmArea();
                    break;
                case WindowMessage.WM_NCHITTEST:
                    m.Result = TRUE;
                    return;
                case WindowMessage.WM_SIZE:
                    WmSize(ref m);
                    break;
                case WindowMessage.WM_MOUSEMOVE:
                case WindowMessage.WM_NCMOUSEMOVE:
                    if (!is_resizable && ReadMessage) ResizableMouseMove(PointToClient(MousePosition));
                    break;
                case WindowMessage.WM_LBUTTONDOWN:
                case WindowMessage.WM_NCLBUTTONDOWN:
                    if (!is_resizable && ReadMessage) ResizableMouseDown();
                    break;
            }
            base.WndProc(ref m);
        }
 
        int oldm = 0;
        void DwmArea()
        {
            if (DwmEnabled && shadow > 0)
            {
                int margin;
                if (WindowState == FormWindowState.Normal) margin = 1;
                else margin = 0;
                if (oldm == margin) return;
                oldm = margin;
                var v = 2;
                DarkUI.DwmSetWindowAttribute(Handle, 2, ref v, 4);
                DwmExtendFrameIntoClientArea(handle, new MARGINS(margin));
            }
        }
 
        const nint SIZE_RESTORED = 0;
        const nint SIZE_MINIMIZED = 1;
        const nint SIZE_MAXIMIZED = 2;
        void WmSize(ref System.Windows.Forms.Message m)
        {
            if (m.WParam == SIZE_MINIMIZED) WinState = WState.Minimize;
            else if (m.WParam == SIZE_MAXIMIZED) WinState = WState.Maximize;
            else if (m.WParam == SIZE_RESTORED) WinState = WState.Restore;
        }
 
        #endregion
 
        protected override CreateParams CreateParams
        {
            get
            {
                CreateParams cp = base.CreateParams;
                cp.Style |= (int)WindowStyles.WS_MINIMIZEBOX;
                return cp;
            }
        }
 
        /// <summary>
        /// 窗体圆角
        /// </summary>
        void SetReion()
        {
            if (Region != null) Region.Dispose();
            var rect = ClientRectangle;
            if (rect.Width > 0 && rect.Height > 0)
            {
                if (IsMax) Region = new Region(rect);
                else
                {
                    if (UseDwm && OS.Win11) return;
                    using (var path = rect.RoundPath(radius * Config.Dpi))
                    {
                        var region = new Region(path);
                        path.Widen(Pens.White);
                        region.Union(path);
                        Region = region;
                    }
                }
            }
        }
 
        #region BASE
 
        #region 属性
 
        bool resizable = true;
        [Description("调整窗口大小"), Category("行为"), DefaultValue(true)]
        public bool Resizable
        {
            get => resizable;
            set
            {
                if (resizable == value) return;
                resizable = value;
                HandMessage();
            }
        }
 
        WState winState = WState.Restore;
        WState WinState
        {
            set
            {
                if (winState == value) return;
                winState = value;
                if (IsHandleCreated) { HandMessage(); SetReion(); }
            }
        }
 
        void HandMessage()
        {
            ReadMessage = CanMessageFilter && winState == WState.Restore && resizable;
            IsAddMessage = ReadMessage;
        }
 
        bool ReadMessage = false;
        bool _isaddMessage = false;
        bool IsAddMessage
        {
            set
            {
                if (_isaddMessage == value) return;
                _isaddMessage = value;
                if (value) Application.AddMessageFilter(this);
                else Application.RemoveMessageFilter(this);
            }
        }
 
        #endregion
 
        protected override void OnHandleCreated(EventArgs e)
        {
            handle = new HWND(Handle);
            base.OnHandleCreated(e);
            if (UseDwm && OS.Version.Major >= 6)
            {
                try
                {
                    int enabled = 0;
                    DarkUI.DwmIsCompositionEnabled(ref enabled);
                    DwmEnabled = enabled == 1;
                }
                catch { }
            }
            SetTheme();
            DisableProcessWindowsGhosting();
            HandMessage();
        }
 
        #region 交互
 
        #region 拖动窗口
 
        /// <summary>
        /// 拖动窗口(鼠标按下)
        /// </summary>
        public override void DraggableMouseDown()
        {
            var mouseOffset = MousePosition;
            bool end = true, handmax = false;
            Size min = MinimumSize, max = MaximumSize;
            if (DwmEnabled && WindowState == FormWindowState.Maximized)
            {
                ITask.Run(() =>
                {
                    while (end)
                    {
                        var mousePosition = MousePosition;
                        if (mouseOffset != mousePosition)
                        {
                            if ((Math.Abs(mousePosition.X - mouseOffset.X) >= 6 || Math.Abs(mousePosition.Y - mouseOffset.Y) >= 6))
                            {
                                handmax = true;
                                Invoke(new Action(() =>
                                {
                                    WindowState = FormWindowState.Normal;
                                    isMax = false;
                                }));
                                return;
                            }
                        }
                        else System.Threading.Thread.Sleep(10);
                    }
                });
            }
            ReleaseCapture();
            SendMessage(Handle, 0x0112, 61456 | 2, IntPtr.Zero);
            end = false;
            if (handmax)
            {
                MaximumSize = max;
                MinimumSize = min;
                return;
            }
            else
            {
                var mousePosition = MousePosition;
                var screen = Screen.FromPoint(mousePosition);
                if (mousePosition.Y == screen.WorkingArea.Top && MaximizeBox) Max();
            }
        }
 
        #endregion
 
        #region 调整窗口大小
 
        /// <summary>
        /// 调整窗口大小(鼠标移动)
        /// </summary>
        /// <returns>可以调整</returns>
        public override bool ResizableMouseMove()
        {
            if (winState == WState.Restore)
            {
                var retval = HitTest(PointToClient(MousePosition));
                if (retval != HitTestValues.HTNOWHERE)
                {
                    var mode = retval;
                    if (mode != HitTestValues.HTCLIENT)
                    {
                        SetCursorHit(mode);
                        return true;
                    }
                }
            }
            return false;
        }
        /// <summary>
        /// 调整窗口大小(鼠标移动)
        /// </summary>
        /// <param name="point">客户端坐标</param>
        /// <returns>可以调整</returns>
        public override bool ResizableMouseMove(Point point)
        {
            if (winState == WState.Restore)
            {
                var retval = HitTest(point);
                if (retval != HitTestValues.HTNOWHERE)
                {
                    var mode = retval;
                    if (mode != HitTestValues.HTCLIENT)
                    {
                        SetCursorHit(mode);
                        return true;
                    }
                }
            }
            return false;
        }
 
        #endregion
 
        #region 鼠标
 
        public bool PreFilterMessage(ref System.Windows.Forms.Message m)
        {
            if (is_resizable) return OnPreFilterMessage(m);
            if (Window.CanHandMessage && ReadMessage)
            {
                switch (m.Msg)
                {
                    case 0xa0:
                    case 0x200:
                        if (isMe(m.HWnd))
                        {
                            if (ResizableMouseMove(PointToClient(MousePosition))) return true;
                        }
                        break;
                    case 0xa1:
                    case 0x201:
                        if (isMe(m.HWnd))
                        {
                            if (ResizableMouseDown()) return true;
                        }
                        break;
                }
            }
            return OnPreFilterMessage(m);
        }
 
        protected virtual bool OnPreFilterMessage(System.Windows.Forms.Message m) => false;
 
        bool isMe(IntPtr intPtr)
        {
            var frm = FromHandle(intPtr);
            if (frm == this || GetParent(frm) == this) return true;
            return false;
        }
 
        static Control? GetParent(Control? control)
        {
            try
            {
                if (control != null && control.IsHandleCreated && control.Parent != null)
                {
                    if (control is Form) return control;
                    return GetParent(control.Parent);
                }
            }
            catch { }
            return control;
        }
 
        #endregion
 
        #endregion
 
        #region 程序
 
        /// <summary>
        /// 最大化/还原
        /// </summary>
        public override bool MaxRestore()
        {
            if (WindowState == FormWindowState.Maximized)
            {
                WindowState = FormWindowState.Normal;
                isMax = false;
                return false;
            }
            else
            {
                Screen screen = Screen.FromPoint(Location);
                if (screen.Primary) MaximizedBounds = screen.WorkingArea;
                else MaximizedBounds = new Rectangle(0, 0, 0, 0);
                WindowState = FormWindowState.Maximized;
                isMax = true;
                return true;
            }
        }
 
        bool ismax = false;
        bool isMax
        {
            get => ismax;
            set
            {
                if (ismax == value) return;
                ismax = value;
                if (value) { if (skin != null) skin.Visible = false; }
                else ShowSkin();
                DwmArea();
            }
        }
 
        /// <summary>
        /// 最大化
        /// </summary>
        public override void Max()
        {
            if (ismax) return;
            Screen screen = Screen.FromPoint(Location);
            if (screen.Primary) MaximizedBounds = screen.WorkingArea;
            else MaximizedBounds = new Rectangle(0, 0, 0, 0);
            WindowState = FormWindowState.Maximized;
            isMax = true;
        }
 
        /// <summary>
        /// 全屏/还原
        /// </summary>
        public override bool FullRestore()
        {
            if (WindowState == FormWindowState.Maximized)
            {
                WindowState = FormWindowState.Normal;
                isMax = false;
                return false;
            }
            else
            {
                WindowState = FormWindowState.Maximized;
                isMax = true;
                return true;
            }
        }
 
        /// <summary>
        /// 全屏
        /// </summary>
        public override void Full()
        {
            WindowState = FormWindowState.Maximized;
            isMax = true;
        }
 
        public override void NoFull()
        {
            WindowState = FormWindowState.Normal;
            isMax = false;
        }
 
        #endregion
 
        #endregion
    }
}