ningshuxia
2025-03-27 afbafeecc1325bff849a17fb63b9b2b65b48ddf1
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
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 控件拓展类
    /// </summary>
    public static class ControlExtensions
    {
        /// <summary>
        /// 绘制控件边框
        /// </summary>
        /// <param name="ctrl">控件</param>
        /// <param name="e">PaintEventArgs</param>
        /// <param name="borderColor">Color</param>
        /// <param name="borderWidth">默认为1</param>
        public static void DrawBorder(this Control ctrl, PaintEventArgs e, Color borderColor, int borderWidth = 1)
        {
            ControlPaint.DrawBorder(e.Graphics,
                                                    ctrl.ClientRectangle,
                                                    borderColor, borderWidth, ButtonBorderStyle.Solid,
                                                    borderColor, borderWidth, ButtonBorderStyle.Solid,
                                                    borderColor, borderWidth, ButtonBorderStyle.Solid,
                                                    borderColor, borderWidth, ButtonBorderStyle.Solid);
        }
 
 
 
    }
 
}