通过绘图工具绘制一个椭圆的图形再填充到控件上,并更改控间的剩余空间颜色
//控件状态表示区域->控件外框
//****************
//控件整体背景色
//****************
if (Parent != null)
pevent.Graphics.FillRectangle(
new SolidBrush(Parent.BackColor), 0, 0, Width, Height);
//使用高质量的平滑模式,消除椭圆边缘锯齿
pevent.Graphics.SmoothingMode =
System.Drawing.Drawing2D.SmoothingMode.HighQuality;