111,098
社区成员




delegate void RefreshForm(string s);
//主线程外操作界面的方法
private void AddList(string s)
{
if (listBox1.InvokeRequired)
{
Invoke(new RefreshForm(AddList), s);
}
else
{
listBox1.Items.Insert(0, s)
}
}