问题描述
- c# winform项目,将panel控件中的四条边框加粗,且四条边框的颜色为蓝色
-
在c# winform项目,目前panel控件中的四条边框的样式为细线黑色。
请问如何将panel控件中的四条边框加粗,且四条边框的颜色为蓝色。请各位帮忙看看有没有相关的源码或参考资料。谢谢!
解决方案
private void panel1_Paint(object sender, PaintEventArgs e)
{
ControlPaint.DrawBorder(e.Graphics,
this.panel1.ClientRectangle,
Color.Blue,
1,
ButtonBorderStyle.Solid);
}
解决方案二:
private void panel1_Paint(object sender, PaintEventArgs e)
{
e.Graphics.DrawRectangle(Pens.Blue, 0, 0, panel1.Width - 1, panel1.Height - 1);
}
时间: 2024-12-24 20:18:26