为什么我的用户控件绘制事件不只在一个控件上填充矩形?

时间:2018-06-23 13:10:01

标签: c# .net winforms custom-controls

我不明白我在做什么错。 对于我创建的两个控件之一(第一个),它可以工作。但是对于第二个,不是吗? 我已经尝试了很多方法来解决此问题,但是还没有找到解决任何想法的方法?

What happens

创建它们的代码:

    public MessageLogView()
    {
        MessageBubble bubble = new MessageBubble("Hey there Steve I love you", DateTime.Today, Color.FromArgb(255,255,255), new Padding(10, 10, 10, 10));

        bubble.Location = new Point(5, 5);

        this.Controls.Add(bubble);

        MessageBubble bubble2 = new MessageBubble("K, good for you", DateTime.Today, Color.FromArgb(220, 248, 198), new Padding(10, 10, 10, 10));

        bubble2.Location = new Point(5, 5 + bubble.BubbleHeight + 5);

        this.Controls.Add(bubble2);

    }

用户控件:

 public partial class MessageBubble : UserControl
{
    private string Text;
    private DateTime Date;
    private Color BubbleColor = Color.FromArgb(220, 248, 198);
    private Size stringSize, datestringSize;
    public Font textFont { get; set; } = new Font("Arial", 12, FontStyle.Regular);
    public Font dateFont { get; set; } = new Font("Arial", 9, FontStyle.Bold);
    public Color textColor { get; set; } = Color.Black;
    public Color dateColor { get; set; } = Color.FromArgb(180, 208, 158);
    public int cornerRadius { get; set; } = 5;

    public int BubbleHeight { get
        {
            return this.Padding.Top + this.Padding.Bottom + stringSize.Height + 5 + datestringSize.Height;
        }
    }
    public int BubbleWidth
    {
        get
        {
            return this.Padding.Left + this.Padding.Right + stringSize.Width;
        }
    }

    public MessageBubble(string text, DateTime date, Color color, Padding padding)
    {
        InitializeComponent();
        Text = text;
        this.BubbleColor = color;
        Date = date;
        stringSize = this.CreateGraphics().MeasureString(Text, this.textFont).ToSize();
        datestringSize = this.CreateGraphics().MeasureString(Date.ToString("hh:mm tt"), this.dateFont).ToSize();
        this.Padding = padding;
        this.Width = this.BubbleWidth;
        this.Height = this.BubbleHeight;
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        e.Graphics.FillRectangle(new SolidBrush(this.BubbleColor), Bounds);
        e.Graphics.DrawString(this.Text, this.textFont, new SolidBrush(this.textColor), new Point(this.Padding.Left,this.Padding.Top));
        e.Graphics.DrawString(this.Date.ToString("hh:mm tt"), this.dateFont, new SolidBrush(this.dateColor), new Point(this.Width - datestringSize.Width - Padding.Right, this.Padding.Top + stringSize.Height + 5));
        Console.WriteLine($"Drawn: {this.Text} - {this.Bounds.X}, {this.Bounds.Y} - {this.BubbleWidth}, {this.BubbleHeight}/{this.Bounds.Width}, {this.Bounds.Height} - {this.BubbleColor.ToString() }");
    }
}

2 个答案:

答案 0 :(得分:2)

您可以在构造函数中将Usercontrol的{​​{1}}设置为BackColor

BubbleColor

现在看起来像预期的一样:

enter image description here

但是,实际错误来自BubbleColor = color; 属性。它是控件所在的矩形,其位置是控件的位置,因此,根据数字的不同,您大部分是在气泡外部绘制的。

相反,您可以使用:

Bounds

但是最自然的解决方案是使用 right属性,即Rectangle rect = new Rectangle(Point.Empty, Bounds.Size);

而且,正如Reza的交叉帖子所说:确保确保处理掉GDI +资源,即Brushes。。

答案 1 :(得分:2)

奇怪的行为是因为使用Bounds而不是ClientRectangle。它们是不同的:

  • Bounds:控件的大小和位置相对于父控件
  • ClientRectangle:代表控件客户区的矩形。

在填充矩形时使用ClientRectangle

在父级上的点(100, 100)上放置大小为(10,10)的控件时,客户端矩形将为(0, 0, 100, 100),而Bounds将为{{1} }。

注意:您需要处理GDI +对象,否则不久将面临 GDI泄漏。在使用中创建和使用它们:

(10, 10, 100, 100)