1

我整个早上都在搜索,不幸的是我不确定这个问题的技术术语是什么,所以我找不到解决方案。

当我从 GroupBox 派生并覆盖 onPaint 函数时,groupbox 会在先前的 groupbox 之上重新绘制自己。子控件正确绘制,只是组框受到影响..

截屏

class ExtendedComponents
{
  public partial class extendedGroupBox : GroupBox
  {
    private Color borderColor;

    public extendedGroupBox()
    {
      this.SetStyle(ControlStyles.DoubleBuffer | ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint | ControlStyles.ContainerControl, true);
      this.borderColor = Color.Black;
    }

    [NotifyParentProperty(true)]
    public Color BorderColor
    {
      get { return this.borderColor; }
      set { this.borderColor = value; Invalidate(); }
    }

    protected override void OnPaint(PaintEventArgs e)
    {
      Size tSize = TextRenderer.MeasureText(this.Text, this.Font);

      Rectangle borderRect = e.ClipRectangle;
      borderRect.Y += tSize.Height / 2;
      borderRect.Height -= tSize.Height / 2;
      ControlPaint.DrawBorder(e.Graphics, borderRect, this.borderColor, ButtonBorderStyle.Dotted);

      Rectangle textRect = e.ClipRectangle;
      textRect.X += 6;
      textRect.Width = tSize.Width + 5;
      textRect.Height = tSize.Height;
      e.Graphics.FillRectangle(new SolidBrush(this.BackColor), textRect);
      e.Graphics.DrawString(this.Text, this.Font, new SolidBrush(this.ForeColor), textRect);
    }
  }
}

任何帮助将非常感激!

4

2 回答 2

2

简单的答案是不使用 GroupBox 控件——它本质上是轻浮的。

尝试使用 Panel 控件而不是 DoubleBuffer SetStyles 等。

对于您当前的实现,不要使用e.ClipRectangle

//Rectangle borderRect = e.ClipRectangle;
Rectangle borderRect = this.ClientRectangle;

//Rectangle textRect = e.ClipRectangle;
Rectangle textRect = this.ClientRectangle;
于 2011-12-01T17:12:28.703 回答
1

另一件需要注意的是,您应该覆盖 OnPaintBackground 以避免闪烁。在那里你要么什么都不做,要么绘制控制前景色。

于 2011-12-01T17:37:44.160 回答