I have an application that can take a long time to perform some GUI updates. I can't run this in a background thread because the long processing is associated with updating GUI components which can only be done in the main thread.

Therefore, I've created a helper class which will create and display a WaitDialog form in a background thread until the GUI has finished updating.

My helper class looks like this:

public class ProgressWaitDialogHelper : IDisposable
{
    private Thread _thread = null;

    public void ShowDialog()
    {
        ThreadStart threadStart = new ThreadStart(ShowDialogAsync);
        _thread = new Thread(threadStart);
        _thread.SetApartmentState(ApartmentState.STA);
        _thread.Start();
    }

    public void Dispose()
    {
        if ((_thread != null) &&
            (_thread.IsAlive))
        {
            _thread.Abort();
        }
    }

    private void ShowDialogAsync()
    {
        ProgressWaitDialog waitDialog = new ProgressWaitDialog();
        waitDialog.ShowDialog();
    }
}

The code to call the helper class in my main GUI window looks like this:

using (ProgressWaitDialogHelper waitDialog = new ProgressWaitDialogHelper())
{
    waitDialog.ShowDialog();

    // Do long running GUI task on main thread here.
}

This seems to work fine and looks exactly like I want on the GUI. The WaitDialog form is modal and blocks access to the main GUI form until it has finished its updates. As soon as the long running GUI task is completed, it'll drop out of the Using block and thus call the Dispose method on the helper class which in turn will call Abort on the thread.

My question is, is there a more graceful way to terminate the thread or a better way of achieving the same behaviour?

link|improve this question

77% accept rate
feedback

1 Answer

I would suggest doing the actual work on the worker thread and showing your waitdialog on your GUI thread. Then you can signal your main thread when the work is done, and upon completion of the work, the thread can gracefully terminate, in a normal fashion, and you can just kill your waitdialog as you would kill any other dialog.

link|improve this answer
This will not work because the long running task is to do with GUI components that were created on the main thread. You cannot updating GUI components on the worker thread. Because the main thread is busy updating the GUI, it cannot create a modal waitdialog because then the GUI control would not be able to updating. As far as I can see, the waitdialog needs to be created in the worker thread. – millie May 12 '11 at 10:07
@user you didn't say that in your question, how am I supposed to know that, but if that is the case I'd like to know WHAT kind of work this is, on GUI components? – Tony The Lion May 12 '11 at 10:18
You are supposed to know that because I mentioned that in the first 2 lines I wrote in my opening post "I have an application that can take a long time to perform some GUI updates. I can't run this in a background thread because the long processing is associated with updating GUI components which can only be done in the main thread." I really can't see how I can be clearer than that. With regards to giving details on the actual GUI component work, I would go into more detail but I don't think it actually matters or helps in providing a solution. – millie Jun 2 '11 at 8:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.