Easy Threading in WPF

Posted by Sandeep Bansal on Stack Overflow See other posts from Stack Overflow or by Sandeep Bansal
Published on 2010-03-17T21:47:48Z Indexed on 2010/03/17 21:51 UTC
Read the original article Hit count: 140

Filed under:
|
|

Hi everyone,

I've been reading a lot about threading in C#, WPF and Silverlight but can't get it to work.

My main problem is I have the _load (_Initialized) action and it has a lot of object creation and along with that I have timers working doing different things, this causes the startup time of the program to be very slow and obviously causes the UI to hang and it isn't a good thing for deploying to a lot of users.

My timers change values of labels and textfields but having them do that on another thread is an obvious no go.

So can someone give me some examples on how to achieve what I need to do?

Thanks

© Stack Overflow or respective owner

Related posts about c#

Related posts about wpf