gpt4 book ai didi

c# - 从另一个线程foreach listview项目

转载 作者:行者123 更新时间:2023-12-03 13:20:06 25 4
gpt4 key购买 nike

我想从另一个线程使用foreach(objectListView1.Items中的ListViewItem项目),但是我不知道如何使用。

我的代码:

        void createMoviesXML()
{
foreach (ListViewItem item in objectListView1.Invoke(new Action(() => objectListView1.Items)) // I know it's wrong
{
if (Regex.IsMatch(item.SubItems[0].Text, @"&"))
{
item.SubItems[0].Text = Regex.Replace(item.SubItems[0].Text, @"&", "&");
}
}
}

private void Form1_Load(object sender, EventArgs e)
{
Thread thr1 = new Thread(new ThreadStart(createMoviesXML));
thr1.Start();
}

最佳答案

由于要触摸多个控件,因此需要在UI线程上执行整个循环。

void createMoviesXML()
{
objectListView1.Invoke(new Action(() =>
{
foreach (var item in objectListView1.Items)
{
// Do stuff
}
}));
}

关于c# - 从另一个线程foreach listview项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21443843/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com