111,120
社区成员
发帖
与我相关
我的任务
分享
private void Do()
{
rows = this.listView1.Items.Count;
int i = 0;
while (i < rows)
{
DownLoad();
Thread.Sleep(1000);
}
}
public void Start()
{
Thread thread = new Thread(new ThreadStart(Do));
thread.Start();
}
private void Do()
{
rows = this.listView1.Items.Count;
int i = 0;
while (i < rows)
{
DownLoad();
}
}
private void DownLoad()
{
//
}