Tagged Questions
4
votes
7answers
2k views
Create a Modeless Messagebox
How might one go about creating a Modeless MessageBox? Do I have to just create my own Windows Form class and use that? If so, is there an easy way of adding a warning icon (rather than inserting my ...
1
vote
2answers
826 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
105 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
2answers
367 views
Form usable even when a modal dialog is above
I have a Dialog A and I want it to load a second dialog B which is modeless and stays along side A throughout. Dialog A may then launch a modal dialog C. But when C is present I want B to be usable. I ...