3

フォームのaからコントロールのプロパティを取得したいBackgroundWorker

foreach (ListViewItem i in ListView.CheckedItems) { //error: Cross-thread operation not valid: Control 'ListView' accessed from a thread other than the thread it was created on.
    //do something with i
}

誰かがこれを行うための最も簡単で簡単な方法を提案できますか?

4

2 に答える 2

2

これをもう一度突き刺してみましょう...

1.) ListView をフォームにドラッグします。

2.) BackgroundWorker をフォームにドラッグします。

3.) ListViewItem コレクションを反復処理するメソッドを作成する

private void LoopThroughListItems()
{
    foreach (ListViewItem i in listView1.CheckedItems)
        DoSomething(); 

}

4.) BackgroundWorker の DoWork イベント内で LoopThroughListItems() を呼び出すコードを追加します。

private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
    LoopThroughListItems();
}

5.) フォーム ロードで - メイン スレッド (動作) でコードを実行し、次に backgroundWorkder スレッド (失敗) でコードを実行します。

private void Form1_Load(object sender, EventArgs e)
{
    // Try it on the UI Thread - It works
    LoopThroughListItems();

    // Try it on a Background Thread - It fails
    backgroundWorker1.RunWorkerAsync();

}

6.) IsInvokeRequired/Invoke を使用するようにコードを変更します。

private void LoopThroughListItems()
{

    // InvokeRequired == True when executed by non-UI thread
    if (listView1.InvokeRequired)
    {
        // This will re-call LoopThroughListItems - on the UI Thread
        listView1.Invoke(new Action(LoopThroughListItems));
        return;
    }

    foreach (ListViewItem i in listView1.CheckedItems)
        DoSomething(); 
}

7.) アプリを再度実行します。これで、UI スレッドと非 UI スレッドで動作します。

それは問題を解決します。IsInvokeRequired/Invoking のチェックは、慣れ親しんだ一般的なパターンです (これが、すべてのコントロールに含まれている理由です)。あちこちでそれを行っている場合は、ここで説明されているように、巧妙なことをしてすべてをまとめることができます: InvokeRequired コードパターンの自動化

于 2012-05-13T13:12:03.180 に答える
1

次のようなことを試してください:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void OnClick(object sender, EventArgs e)
        {
            backgroundWorker1.RunWorkerAsync();
        }

        private void OnDoWork(object sender, DoWorkEventArgs e)
        {
            foreach (ListViewItem i in GetItems(listView1))
            {
                DoSomething(i);
            }
        }

        private IEnumerable<ListViewItem> GetItems(ListView listView)
        {
            if (InvokeRequired)
            {
                var func = new Func<ListView, IEnumerable<ListViewItem>>(GetItems);
                return (IEnumerable<ListViewItem>)Invoke(func, new[] { listView });
            }
            // Create a defensive copy to avoid iterating outsite UI thread
            return listView.CheckedItems.OfType<ListViewItem>().ToList();
        }

        private void DoSomething(ListViewItem item)
        {
            if (InvokeRequired)
            {
                var action = new Action<ListViewItem>(DoSomething);
                Invoke(action, new[] { item });
                return;
            }
            // Do whatever you want with i
            item.Checked = false;
        }
    }
}

しかし、あなたの質問は本当に一般的でした。詳細を共有すると、より簡単な解決策やより良い解決策が得られるかもしれません。

于 2012-05-15T20:51:45.317 に答える