-3

how to build multithreaded supported UI using C# ? At runtime I'm changing my values through UI and those values are getting passed to already running threads in backed code ? Please share if someone has any code example or small project

One UI thread and it's intreacting at backend running threads in server.

  • 4
    This question is rather broad and generic. I'm sure there will be resources out there if you search Google. – Ralt Jul 23 '15 at 10:06
  • It's not even clear if you're referring to multiple UI threads, or just multiple regular threads and one UI thread. If you're talking about the later, then you just have to make sure to use `Application.Current.Dispatcher.Invoke` and `Application.Current.Dispatcher.BeginInvoke` whenever you wanna do something that affects the UI from another thread. – almulo Jul 23 '15 at 10:12

1 Answers1

-1

Similar questions use the BackgroundWorker Class as shown on these answers:

Community
  • 1
  • 1
Daniel S. Fowler
  • 1,982
  • 15
  • 12