C#Windows窗体应用程序列表框控件已转移

时间:2018-08-11 10:51:21

标签: c# winforms listbox user-controls

我在Windows窗体应用程序中所有者绘制的列表框遇到问题。 列表框充满了包含其自己的UserControl的对象。每个项目的用户控件显示在列表框中。 所有这些都有效,但是当我向上或向下滚动时,UserControl似乎有些偏移。 单击它们后,它们会跳到正确的位置。

enter image description here

在图片中,您可以看到白色的UserControls向右移一点,向右移一点。

enter image description here

这就是滚动之前的样子。

列表中填充了以下类型的对象:

class Class1
{
    public UserControl1 UC;
    public string Text;

    public Class1(UserControl1 uc, string text)
    {
        UC = uc;
        Text = text;
    }
}

这是控制列表的类:

class ListDrawer
{
    public ListBox LB;
    public int HeaderHeight = 25;

    public ListDrawer(ListBox lb)
    {
        LB = lb;
        LB.DrawMode = DrawMode.OwnerDrawVariable;
        LB.DrawItem += LB_DrawItem;
        LB.MeasureItem += LB_MeasureItem;
    }

    private void LB_MeasureItem(object sender, MeasureItemEventArgs e)
    {
        ListBox lst = sender as ListBox;
        Class1 c = (Class1)lst.Items[e.Index];
        e.ItemHeight = HeaderHeight;
        e.ItemHeight = e.ItemHeight + c.UC.Height;
    }

    private void LB_DrawItem(object sender, DrawItemEventArgs e)
    {
        ListBox lst = sender as ListBox;
        Class1 c = (Class1)lst.Items[e.Index];
        e.DrawBackground();
        e.Graphics.FillRectangle(Brushes.DarkSeaGreen, e.Bounds);
        e.Graphics.DrawString(c.Text, LB.Font, SystemBrushes.HighlightText, e.Bounds.Left, e.Bounds.Top);
        if (!lst.Controls.Contains(c.UC))
        {
            lst.Controls.Add(c.UC);
        }
        c.UC.Top = e.Bounds.Top + HeaderHeight;
    }
}

单击按钮即可填充列表:

    private void button1_Click(object sender, EventArgs e)
    {
        UserControl1 uc = new UserControl1();
        Class1 c = new Class1(uc, "text 1");
        ListDrawer LD = new ListDrawer(listBox1);
        listBox1.Items.Add(c);
        uc = new UserControl1();
        c = new Class1(uc, "text 2");
        listBox1.Items.Add(c);
    }

希望这可以解决。...

干杯, 罗伯特。

1 个答案:

答案 0 :(得分:0)

在用户控件中,覆盖 onMove 事件:

protected override void OnMove( EventArgs e ) {
    base.OnMove( e );

    this.Parent.Invalidate();
}

它可能会闪烁,但可以解决您的问题