vote up 0 vote down star

WPF's Window.ShowDialog method returns a nullable boolean. So does CommonDialog.ShowDialog.

Now, I understand cases where these would return false (user clicked Cancel or pressed Esc), and when they would return true (code sets Window.DialogResult to true, probably in response to OK being clicked). But null?

My first thought is that clicking the title bar's Close button might return null. But the docs state (and I confirmed by testing) that the title-bar Close button is treated as a Cancel.

So when would Window.ShowDialog or CommonDialog.ShowDialog ever return null?

flag

50% accept rate
You have to love MS documentation. "A Nullable<(Of <(T>)>) value of type Boolean that signifies how a window was closed by the user." Gee, that helps. – Matthew Flaschen Jun 13 at 6:19
Sounds like the kind of documentation where the writers weren't allowed to talk to the developers and ask questions, but were only allowed access to what they had on the screen... – rwmnau Jun 13 at 6:52

1 Answer

vote up 2 vote down

The method always returns true or false, and this is always equal to the DialogResult property of the window at the time it closes.

But the DialogResult property is null before the window is closed, and another thread could check the property. So it kind of makes sense that the return value is a nullable boolean to match the property, even though it is never actually null.

link|flag
Not sure where you get the idea that another thread could check DialogResult. If you try, you get an InvalidOperationException ("The calling thread cannot access this object because a different thread owns it.") – Joe White Jun 13 at 6:43
Not another thread, but any code running (say) on an event handler on the dialog could retrieve the value of DialogResult before it completes. Personally I think it's a poor design choice. It should have been non-nullable, the getter throwing an exception if accessed before the dialog quits. – Earwicker Jun 13 at 8:55

Your Answer

Get an OpenID
or

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