Top "Showdialog" questions

How to show another window from mainwindow in QT

Platform: QT, Windows XP I am new to Qt. I want to show another window(what to do to open …

windows qt showdialog
Is it possible to use ShowDialog without blocking all forms?

I hope I can explain this clearly enough. I have my main form (A) and it opens 1 child form (B) …

c# winforms showdialog
How to check if dialog is displayed or display multiple dialogs of the same type?

I'm managing dialogs by showDialog/dismissDialog/removeDialog. I want to: Display several dialogs in kind of a stack: a) First …

android dialog showdialog
Modal Dialog not showing on top of other windows

I am using Window.ShowDialog() to open a modal window in my WPF (MVVM) application, but it lets me navigate …

wpf showdialog
How can I return a value from a ShowDialog window?

frmMain DoSomething() My.Forms.frmMessage.ShowDialog(Me) If AcceptButtonClicked Then ' Do Code DoCode() Else ' Cancel Button Pressed DoOtherCode() …

vb.net winforms popup showdialog
Switching between Forms in C#

When the autogenerated code for my program starts, it calls Application.Run(new Form1()); and starts Form1. I have another …

c# forms showdialog
Prevent ShowDialog() from returning when OK button is clicked

I have a dialog that I want to prevent from closing when the OK button is clicked, but it returns, …

c# winforms dialog showdialog
Which is a better way to call Form.ShowDialog()?

Which is a better way to show a modal dialog? form1 frm=new form1(); frm.showDialog() or (new form1()).showDialog();

c# .net winforms showdialog
ShowDialog() behind the parent window

I am using ShowDialog() with WindowStyle = WindowStyle.SingleBorderWindow; to open a modal window in my WPF (MVVM) application, but it …

wpf showdialog
C# Show Dialog threading

I have a Dialog Box (Importer) which i use for choosing a file I want to import into an app. …

c# multithreading dialog showdialog