Static thread that update specific context

0
0

Hi,

I have a static BackgroundWorker, and I need to update a specific client calling an event, not all… Application.context do not exits anymore

how can I do?

best

Cristian

  • You must to post comments
0
0

Hi Cristian,

If you want to make UI changes in the RunWorkerCompleted handler, you can use Application.Update to run it within the session’s context:

Application.Update(this, () =>
 {
    AlertBox.Show("Completed!");
 });

If you can provide more details or a small sample of what you’re trying to accomplish, I can offer more insight!

Best Regards,

Levie

 

 

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.