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);
| }
|
|
|
| }
|
| }
|
|