我想创建一个带黑色边框的FlowLayoutPanel。 为此,我使用了Paint-Method和以下代码:
private void flowLayoutPanel_Paint(object sender, PaintEventArgs e)
{
ControlPaint.DrawBorder(e.Graphics, e.ClipRectangle, Color.Black, ButtonBorderStyle.Solid);
}
我的问题是,当我调整表单大小,因此FlowLayoutPanel时,黑色边框没有正确显示。 Screenshot of the border.
以防万一:我已将DoubleBuffered = true;
添加到主要功能中。
有没有办法解决这个问题?