showdialog Questions

3

Solved

I'm building android app using flutter. I have a problem to close the simple dialog programmatically. Now I have a stateful page named ListVessel. This page contains listTile from array otherVess...
Demilune asked 18/12, 2019 at 4:19

4

Solved

We have a WPF busy window indicator. It is shown on the main thread using a window.ShowDialog(). On response to the Loaded event an action is executed and the window is closed so the application co...
Sheepish asked 28/10, 2016 at 11:31

12

Solved

I hope I can explain this clearly enough. I have my main form (A) and it opens 1 child form (B) using form.Show() and a second child form (C) using form.Show(). Now I want child form B to open a fo...
Histogen asked 9/1, 2009 at 15:30

4

Solved

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 th...
Plexiform asked 13/6, 2009 at 6:16

7

Solved

I am using ShowDialog() with WindowStyle = WindowStyle.SingleBorderWindow; to open a modal window in my WPF (MVVM) application, but it lets me navigate to parent window using the Windows taskbar (W...
Plod asked 24/3, 2012 at 21:53

2

I am working with FlutterDriver, I have an IconButton defined and a key set as shown: Center( child: IconButton( key: Key('moredots'), icon: Icon(Icons.more_vert), onPressed: () { showD...
Celaeno asked 5/11, 2019 at 17:38

2

Solved

I saw this example - Binding.UpdateSourceTrigger Property in the example the UpdateSourceTrigger set to Explicit and then in the view code he call to UpdateSource of the TextBox name. But if i u...
Overindulge asked 5/10, 2011 at 7:27

3

Solved

I'm managing dialogs by showDialog/dismissDialog/removeDialog. I want to: Display several dialogs in kind of a stack: a) First dialog is shown using showDialog(DIALOG_TYPE) b) Next dialogs ar...
Scissel asked 30/6, 2010 at 19:5

4

Solved

frmMain DoSomething() My.Forms.frmMessage.ShowDialog(Me) If AcceptButtonClicked Then ' Do Code DoCode() Else ' Cancel Button Pressed DoOtherCode() End If DoMore() frmMessage My.Forms.frmMain.Ac...
Ugly asked 31/7, 2013 at 22:33

2

I think this is a bug in the WPF framework, without going into depths of my program and why I am doing what I am doing, I wrote a simple test application to prove my theory. Can this issue be conf...
Vipul asked 7/8, 2009 at 9:30

3

When the autogenerated code for my program starts, it calls Application.Run(new Form1()); and starts Form1. I have another form I'd like to switch to and close Form1 at the same time. The problem ...
Sherrill asked 25/5, 2011 at 8:52

5

Solved

I am using Window.ShowDialog() to open a modal window in my WPF (MVVM) application, but it lets me navigate to other windows using the Windows taskbar (Windows 7). Consider this: I have 3 non-moda...
Anuradhapura asked 20/6, 2011 at 21:8

5

Solved

I have a dialog that I want to prevent from closing when the OK button is clicked, but it returns, and that even if the AcceptButton property is set to none instead of my OK button. What is the bes...
Denunciate asked 26/4, 2012 at 9:41

1

Solved

I open a form as a modal dialog using ShowDialog. This dialog in turn allows another form to be opened as a modal dialog again using ShowDialog. When the innermost dialog is closed, this causes it...
Canice asked 20/3, 2012 at 17:49

2

Solved

Which is a better way to show a modal dialog? form1 frm=new form1(); frm.showDialog() or (new form1()).showDialog();
Amargo asked 24/12, 2011 at 12:54

1

Solved

I'm new to WPF so this is probably a pretty easy problem. I open a dialog window using ShowDialog(). Then, if I click into another window that's fullscreen or just covers my dialog, it's difficult ...
Masquer asked 8/7, 2011 at 20:40

3

is it possible to display a Modal Window from a WPF User Control, that is a child of an ElementHost, and set the owner/parent of the Modal Window to the containing Form control? I'm guessing you c...
Ways asked 7/9, 2009 at 2:53

3

Solved

I've been looking for a dialog with a checkbox "Don's show me this dialog again" in C#. I googled and search a lot, but I just could not find an elegant solution. The dialog should work as simila...
Hierogram asked 25/11, 2010 at 5:40

2

I'm trying to create a custom MessageBox by using a WPF Window that is called with ShowDialog(). So far, I've managed to implement everything, except for one thing. As you know, when you use Mess...
Farci asked 26/10, 2010 at 19:35

7

Solved

I encounter a problem with a Windows Forms application. A form must be displayed from another thread. So in the form class, I have the following code: private delegate void DisplayDialogCallback(...
Kopple asked 15/6, 2010 at 14:43

1

Solved

I have a borderless Windows Forms application. The main window creates other forms (simple dialogs where I can click yes or no) with ShowDialog(). Every created dialog is not visible in the taskba...
Selfwinding asked 27/5, 2010 at 16:29

3

Solved

How can I force ShowDialog to return from a background thread? I have a WPF application built on top of a C++/CLR framework which is listening to messages sent by the framework. One particular me...
Bergquist asked 9/1, 2010 at 0:39

1

Platform: QT, Windows XP I am new to Qt. I want to show another window(what to do to open it as dialog) from mainwindow. I did "add New Item ->Qt Designer Form Class", named it say MyWindow. Bu...
Intersperse asked 5/10, 2009 at 4:53
1

© 2022 - 2025 — McMap. All rights reserved.