WPF thread and GUI how to access object from different thread?

前端 未结 2 1910
北荒
北荒 2021-02-04 19:08

I have a thread that call an object that get some stuff from Internet. When this object is filled up with all information required, it raises an event with an object will all th

2条回答
  •  南方客
    南方客 (楼主)
    2021-02-04 19:51

    Could a solution be to initialize the object on the main thread?

    MyObject obj;
    
    this.Dispatcher.Invoke((Action)delegate { obj = new MyObject() });
    

    Edit: At a second read-through, this probably isn't a solution given your model. Are you receiving a runtime error as it is? If the object you're passing back is your own, ensuring the object is thread-safe could make CheckAccess unneccessary.

提交回复
热议问题