我在VB,VS2008,winforms工作。我有一些标签来创建,而我正在使用BorderStyle = FixedSingle。
有没有办法改变这边框的颜色?它总是默认为黑色。
如果您不想创建自定义控件,可以尝试以下操作:
原文链接:https://www.f2er.com/vb/256162.html挂钩到Label的油漆事件。
void label1_Paint(object sender,PaintEventArgs e) { ControlPaint.DrawBorder(e.Graphics,label1.DisplayRectangle,Color.Blue,ButtonBorderStyle.Solid); }