我需要从单独的线程获取列表框中的项目数。相当于:count = listbox1.items.count;
我知道如何更新ListBox但是从中我无法弄清楚如何计算其中的项目。
我做到了,实际上非常简单:
Invoke(new MethodInvoker(
delegate
{
int c = lstLinks.Items.Count;
lblLinksCount.Text = c.ToString();
}
));