↧
About updating UI thread
Hello,if Main.cs is a code behind of a Window or Usercontrol, it's executed into UI Thread and you don't need to add a dispatcher.In general, all the code is executed in UI Thread excepted if you...
View ArticleAbout updating UI thread
Hi. Does the main.cs run on the UI thread. I mean when I add a method in Main.cs and update the UI from that method can I omit this.Dispatcher.BeginToInvoke(delegate()... or should I include it? Like...
View Article