A BackgroundWorker is easiest, just implement the RunWorkerCompleted event. Or call Control.Invoke() from your thread to run a delegate instance on the UI thread. The MSDN library article has a good example.
↧