vote up 0 vote down star

Hi,

I am sometimes seeing an issue with Window.ShowDialog() where the window physically closes but does not return to the ShowDialog point in the code from where it was shown.

I have the following:

        try
        {
            log.Debug("Showing new dialog window.");
            result = dialogWindow.ShowDialog();
            log.Debug("Closing new dialog window.");
        }
        finally
        {
            log.Debug("Resetting Opacity: " + this.ToString());
            Opacity = 1;
            Lock.Release(dialogWindowPadLock);    
        }

When the window tries to Close() itself, it dissapears but the Opacity is not set back to 1 and the window is still recieveing KeyUp events but it is not physically displayed.

Has anyone seen anything like this before?

Cheers,

James

As requested, the method to close the window:

public override void EnterPressed(string input)
{
            log.Info("User [" + username + "] successfully activated");

            StopNextUserCheck();
            ActivateUserExitReason = ExitReason.UserActivated;

            Close();

            // don't break as we don't want to add the dbp listener
            return;
}
flag

75% accept rate
Do you have something in the close method of your form that is preventing it from finishing the close? – Mitchel Sellers Oct 19 at 14:23
Yea please post the closing functions. FormClosed, FormClosing and Disposed – EKS Oct 19 at 14:31
You don't need that last return statement. Also, try just calling Close(); and don't call StopNextUserCheck or anything else that could possibly be causing it to not return. – AKoran Oct 19 at 16:55

1 Answer

vote up 0 vote down

I am not sure I understood your question, but maybe try to set the opacity changing in the window closing event.

Also, try to manually set the DialogResult of the opened window.

link|flag
The issue is not the opacity as such just an indicator of the problem. The issue is even though I close the window shown by result = dialogWindow.ShowDialog(); it never executes anything after this line. – James Oct 19 at 16:07
I edited my answer, maybe it will help you. – Shimmy Oct 19 at 19:32

Your Answer

Get an OpenID
or

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