Oct
11

Multithreading in WPF

If you’re unfamiliar with multithreading, be sure to check out my previous entries on the topic. In WPF, creating a thread is as easy as it is with C#. You can find an example on that here.  Alternatively, you could use the BackgroundWorker, which basically will create a thread and will give you a generalized, … Continue reading »

Aug
30

Introduction to Threads

Threading is a pretty core concept, but I felt it might be necessary to give it a brief explanation before moving on to some WPF-specific concerns for threads.  If you are already familiar with threads, these aren’t the droids you’re looking for. If you think about the flow of a simple application that does not … Continue reading »