Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to add items to a list view in a different thread than it was created in and am getting a cross-thread error. How can I make this element accessible in other threads?

share|improve this question

2 Answers

up vote 2 down vote accepted

try to use property control: InvokeRequired - http://msdn.microsoft.com/en-us/library/ms171728%28VS.80%29.aspx

private delegate void AddItemCallback(object o);

private void AddItem(object o)
{
    if (this.listView.InvokeRequired)
    {
        AddItemCallback d = new AddItemCallback(AddItem);
        this.Invoke(d, new object[] { o });
    }
    else
    {
        // code that adds item to listView (in this case $o)
    }
}
share|improve this answer
Do I add this code where my listview is created or where I want to add to my listview? – sooprise Sep 15 '10 at 20:06

Use a Task that does the update, scheduled to the UI using TaskScheduler.FromCurrentSynchronizationContext.

http://msdn.microsoft.com/en-us/library/dd997394.aspx

The advantage to this approach over Control.Invoke is that it will work in WPF, Silverlight, or Windows Forms, whereas Control.Invoke is Windows Forms-only.

P.S. If you're not on .NET 4.0 yet, then Task and TaskScheduler are available in the Rx library.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.