我正在使用backgroundworker将项目添加到列表框中。一段时间后,它将逐一显示列表中存在的所有项目。我只想显示列表中的当前项目,而不是所有项目。
这是我尝试过的。
private void backgroundWorker3_DoWork(object sender, DoWorkEventArgs e)
{
List<string> result = new List<string>();
var found = obj.getFiles();//List<strings>
if (found.Count != 0)
{
for (int i = 0; i < found.Count; i++)
{
int progress = (int)(((float)(i + 1) / found.Count) * 100);
if (found[i].Contains("SFTP"))
{
result.Add(found[i]);
(sender as BackgroundWorker).ReportProgress(progress, found[i]);
}
System.Threading.Thread.Sleep(500);
}
e.Result = result;
}
}
private void backgroundWorker3_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
if (e.UserState != null)
listBox3.Items.Add(e.UserState);
}
答案 0 :(得分:0)
我只想显示列表中的当前项目,而不是所有项目。
尽管这有点骇人听闻,但我认为它应该可以满足您的描述
// just call clear first
listBox3.Items.Clear();
listBox3.Items.Add(e.UserState);
被告知,您确定在这种情况下要使用ListBox
吗?毕竟它不是一个真正的清单,它只是一个项目