我正在尝试在处理文本文件的 Windows 窗体应用程序中更新我的列表视图来更新控件。我的问题与跨线程有关;每当我尝试更新控件时,都会出现错误。在我对应用程序进行多线程处理之前没有错误,但是 UI 只会在处理完整个文本文件后更新。我希望在读取每一行后更新 UI。
我已经发布了相关代码,希望有人能给我一些提示,因为我现在在墙上。在 UpdateListView 方法中的 if 语句期间发生错误。请注意 PingServer 方法是我编写的方法,与我的问题无关。
private void rfshBtn_Click(object sender, EventArgs e)
{
string line;
// Read the file and display it line by line.
var file = new StreamReader("C:\\Users\\nnicolini\\Documents\\Crestron\\Virtual Machine Servers\\servers.txt");
while ((line = file.ReadLine()) != null)
{
Tuple<string, string> response = PingServer(line);
Thread updateThread = new Thread(() => { UpdateListView(line, response.Item1, response.Item2); });
updateThread.Start();
while (!updateThread.IsAlive) ;
Thread.Sleep(1);
}
file.Close();
}
private void UpdateListView(string host, string tries, string stat)
{
if (!listView1.Items.ContainsKey(host)) //if server is not already in listview
{
var item = new ListViewItem(new[] { host, tries, stat });
item.Name = host;
listView1.Items.Add(item); //add it to the table
}
else //update the row
{
listView1.Items.Find(host, false).FirstOrDefault().SubItems[0].Text = host;
listView1.Items.Find(host, false).FirstOrDefault().SubItems[1].Text = tries;
listView1.Items.Find(host, false).FirstOrDefault().SubItems[2].Text = stat;
}
}