c#控件样式详解(一)button控件

c#Windows窗体中,每个控件都有自己的属性,可以在属性中修改简单的样式,如前景色、背景图片等,但是如果想要窗体更美观,就需要通过控件的paint函数进行绘制。

每个按钮都在一个矩形内部,矩形内部左上角坐标为(http://www.amjmh.com/v/BIBRGZ_558768/),以最常见的按钮为例,绘制按钮所在矩形:

public static void button1_Paint(object sender, PaintEventArgs e)
{
simplebutton.ForeColor = Color.DodgerBlue;//按钮字体颜色

e.Graphics.DrawLine(Pens.Red, 0, 0, 0, button1.Height);//左边线
e.Graphics.DrawLine(Pens.Red, 0, 0, button1.Width, 0);//上边线
e.Graphics.DrawLine(Pens.Red, button1.Width, 0, button1.Width, button1.Height);//右边线
e.Graphics.DrawLine(Pens.Red, 0, button1.Height, button1.Width, button1.Height);//下边线
}
效果如图所示:

          

由于矩形下边线和右边线超出了控件显示范围,可以通过修改坐标值来改变显示效果,修改代码:

public static void button1_Paint(object sender, PaintEventArgs e)
{
simplebutton.ForeColor = Color.DodgerBlue;//按钮字体颜色

e.Graphics.DrawLine(Pens.Red, 0, 0, 0, button1.Height);//左边线
e.Graphics.DrawLine(Pens.Red, 0, 0, button1.Width, 0);//上边线
e.Graphics.DrawLine(Pens.Red, button1.Width - 1, 0, button1.Width - 1, button1.Height - 1);//右边线
e.Graphics.DrawLine(Pens.Red, 0, button1.Height - 1, button1.Width - 1, button1.Height - 1);//下边线
}
修改后的效果:

          

 

c#控件样式详解(一)button控件

上一篇:C# 创建、部署和调用WebService的简单示例


下一篇:【windows】windows server 系统管理的快捷命令