-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathNewPanelControl.cs
83 lines (78 loc) · 2.82 KB
/
NewPanelControl.cs
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Diagnostics;
namespace DigitalPlatform.CommonControl
{
public partial class NewPanelControl : Panel
{
public NewPanelControl()
{
InitializeComponent();
}
protected override void OnPaint(PaintEventArgs pe)
{
RectangleF rect = new RectangleF(10, 10,
this.Size.Width, this.Size.Height);
using (Pen pen = new Pen(Color.Gray))
{
RoundRectangle(pe.Graphics,
pen, null, rect, 10);
}
// Calling the base class OnPaint
base.OnPaint(pe);
}
// paramters:
// pen 绘制边框。可以为null,那样就整体一个填充色,没有边框
// brush 绘制填充色。可以为null,那样就只有边框
public static void RoundRectangle(Graphics graphics,
Pen pen,
Brush brush,
RectangleF rect,
float radius)
{
RoundRectangle(graphics,
pen,
brush,
rect.X,
rect.Y,
rect.Width,
rect.Height,
radius);
}
// paramters:
// pen 绘制边框。可以为null,那样就整体一个填充色,没有边框
// brush 绘制填充色。可以为null,那样就只有边框
public static void RoundRectangle(Graphics graphics,
Pen pen,
Brush brush,
float x,
float y,
float width,
float height,
float radius)
{
using (GraphicsPath path = new GraphicsPath())
{
path.AddLine(x + radius, y, x + width - (radius * 2), y);
path.AddArc(x + width - (radius * 2), y, radius * 2, radius * 2, 270, 90);
path.AddLine(x + width, y + radius, x + width, y + height - (radius * 2));
path.AddArc(x + width - (radius * 2), y + height - (radius * 2), radius * 2, radius * 2, 0, 90); // Corner
path.AddLine(x + width - (radius * 2), y + height, x + radius, y + height);
path.AddArc(x, y + height - (radius * 2), radius * 2, radius * 2, 90, 90);
path.AddLine(x, y + height - (radius * 2), x, y + radius);
path.AddArc(x, y, radius * 2, radius * 2, 180, 90);
path.CloseFigure();
if (brush != null)
graphics.FillPath(brush, path);
if (pen != null)
graphics.DrawPath(pen, path);
}
}
}
}