1

我正在使用计时器来更新 ListBox 中的值。每个滴答声我都会执行以下操作:

            listBox1.Items.Clear();
            foreach (string thing in thingys)
            {
                listBox1.Items.Add(thing);
            }

但是,当它执行此操作时,ListBox 会快速闪烁白色(空)一瞬间,然后显示新数据。有可能阻止这个闪光吗?这真的很烦人,因为计时器间隔需要非常低(最多约 100 毫秒)

4

1 回答 1

4

试试这个:

listBox1.BeginUpdate();
listBox1.Items.Clear();
listBox1.Items.AddRange(thingys);
listBox1.EndUpdate();
于 2013-02-08T11:16:57.773 回答