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