Tagged Questions

2
votes
3answers
718 views

Where do I control the behavior of the “X” close button in the upper right of a winform?

I'm venturing into making my VB.NET application a little better to use by making some of the forms modeless. I think I've figured out how to use dlg.Show() and dlg.Hide() instead of calling ...
1
vote
2answers
814 views

Is there a way to auto-hide a always-on-top modeless dialog when the parent opens a modal dialog?

My C# Winforms app has an always-on-top modeless find dialog. Since the user has access to the parent window while the modeless find dialog is open they can choose to open a modal dialog as well. ...
0
votes
1answer
93 views

C# Windows forms cascading windows

I currently have a menu button that allows users to open a new dialog which I would like to be placed directly to the right of the main form. The user can open as many of these dialogs as they would ...
0
votes
3answers
282 views

Which's better: MDI children, or modeless dialogs?

What's the pros and cons for each of them?