Accessing UI in a thread

You could use a BackgroundWorker and then change the UI like this:

control.Invoke((MethodInvoker)delegate {
    control.Enabled = true;
});

Leave a Comment