从单独的线程计算列表框中的项目

时间:2015-02-16 18:44:00

标签: c#-4.0

我需要从单独的线程获取列表框中的项目数。相当于:count = listbox1.items.count;

我知道如何更新ListBox但是从中我无法弄清楚如何计算其中的项目。

我做到了,实际上非常简单:

            Invoke(new MethodInvoker(
                delegate
                {
                    int c = lstLinks.Items.Count;
                    lblLinksCount.Text = c.ToString();
                }
                ));

0 个答案:

没有答案