如何解决使我的表单透明的调整大小错误?

时间:2020-06-03 18:53:29

标签: c# winforms resize transparent

我有一个代码是没有边框的表格,它的大小取决于字符串。

这就像通知表单

有时候表单无法正确调整大小,并且部分看起来透明。

我知道它是透明的,因为即使我在后台看到该程序,该透明部分也会调用所有事件,例如单击或鼠标滚轮。 并检查了表单的Width属性及其确定,它大于其显示的部分。

这是表单更改大小的代码,这是更改颜色或大小的唯一方法。

private void ChangeNotification(string Noti, Color C)
{
    string[] Lines = Noti.Split(new[] { '\r', '\n' });
    string Max = "";
    Lines.ToList().ForEach(s =>
    {
        if (s.Length > Max.Length)
            Max = s;
    });
    using (System.Drawing.Graphics graphics = System.Drawing.Graphics.FromImage(new Bitmap(1, 1)))
    {
        SizeF size = graphics.MeasureString(Max, lblInfo.Font);
        Width = (int)size.Width + scroll.Width + 40;
        Height = Lines.Count() * (int)size.Height;
        Top = Screen.PrimaryScreen.WorkingArea.Height - Height;
        Left = Screen.PrimaryScreen.WorkingArea.Width - Width;
    }
    this.BackColor = C;
    lblInfo.Text = Noti;
}

我发送完全相同的文本,有时它会正确更改其大小。

示例失败:

Example Fails

确定示例:

Example OK

1 个答案:

答案 0 :(得分:0)

只需将标签AutoSize设置为字符串的内容,然后根据该内容调整表单大小即可。它也适用于多行字符串。为什么要全部测量?!...

public void ChangeNotification(string Noti, Color C)
{
    lblInfo.Text = Noti;
    this.BackColor = C;
    this.Size = new Size(lblInfo.Size.Width + lblInfo.Location.X * 2, lblInfo.Size.Height + lblInfo.Location.Y * 2);
    this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - Width, Screen.PrimaryScreen.WorkingArea.Height - Height);
}