Tagged Questions
The dialogresult tag has no wiki summary.
12
votes
5answers
4k views
Why is DialogResult a nullable bool in WPF?
Can anyone think of a good explanation for the fact that result of a dialog is a nullable bool in WPF? This has always baffled me. In WinForms it was an enum type and that made a lot more sense to me.
...
9
votes
6answers
11k views
Can't set DialogResult in WPF
I show a WPF window using ShowDialog() from the calling window. The window opens and is modal as expected. However, in my OK and Cancel button's click events in the dialog window I set ...
7
votes
4answers
3k views
Messagebox with “Yes”, “No” and dialogresult?
I want to make simple Y/N messagebox but I think it is nonsense to design a form for that. I thought I can use MessageBox, add buttons etc. It is simple but since there is no dialog result, I don't ...
5
votes
6answers
259 views
Cannot use DialogResult
I tried to use DialogResult to check an Messagebox's YesNoCancel. I'm using the following code which I don't see any problem with:
DialogResult dlgResult = MessageBox.Show(
"Save changes before ...
4
votes
1answer
514 views
.NET Winform Custom Form - Needs to return DialogResult or somehow prevent asynchronous events
I have a form that calls a custom child form. The child form is basically a popup box that gets some user data.
I want the Parent form to process information returned by the Child form.
The problem ...
4
votes
4answers
3k views
Where is Button.DialogResult in WPF?
In System.Windows.Forms.Button there is a property DialogResult, where is this property in the System.Windows.Controls.Button (WPF)?
3
votes
2answers
171 views
In VB6 is there something similar to DialogResult from a dialog?
I have a VB6 form with buttons with the text 'Continue' and 'Cancel'. I want to check which one was clicked. In C# every form has a dialog result and I could set it before exiting the form depending ...
2
votes
3answers
270 views
DialogResult that doesn't close the form? (C#)
I have a form Form1 from which I display Form2 as a modal form. From Form2 I do all sort of editing and deleting of different set of values which should be reflected in Form1 after closing Form2. So ...
2
votes
2answers
780 views
DialogResult can be set only after Window is created and shown as dialog
I have a main WPF window, mywindow.showDialog
when a button is clicked on the window, a command is executed
let's say the command is SendToTableCommand
protected virtual void ...
2
votes
2answers
310 views
How to code a switch statement to test DialogResult and provide fall through logic
I'm getting strange results testing the return value from a function. This code is inside a for loop:
DialogResult result = EvalReturnFromWS(returnMsg);
switch (result)
{
case ...
1
vote
2answers
249 views
DialogResult problem in wpf
I have a window that I open a few times as a ShowDialog.
Every time I open it I use the new keyword
in the first time i did:
var myWindow = new MyWindow();
myWindow.ShowDialog();
second time I ...
1
vote
1answer
202 views
Bind a views DialogResult to a ViewModels property?
I am relatively new to WPF, XAML and Data-bindings. I have a view (Window) and a view-model.
I have tried to implement the MVVM pattern which means neither the view nor the view-model hold a ...
1
vote
6answers
661 views
User Control Buttons to Close a Dialog Box
I have created a User Control in my application that has a textbox and then 2 buttons on it. One button is to Add data to the DB from the textbox and the second Cancels the action. This User Control ...
1
vote
3answers
1k views
Is it possible to overload the ShowDialog method for forms and return a different result?
EDIT: This method actually works great and I asked it then found the solution later. I added the correct call in the overloaded ShowDialog() method (it's not exacly an overload, or even an override, ...
1
vote
1answer
146 views
when dialog result for form get return
hi i have on object (serverconnection from sqlserver Managament object ) i need send this object to other form to configure connection option and connect so object return but when i send this object ...
0
votes
2answers
51 views
Windows Forms DialogResult
in the following code I want to get the dialog result of a Form but it's not saved to my variable... why?
My code:
public void xyz() {
var dialogResult = new DialogResult();
if ...
0
votes
1answer
44 views
DialogResult handling
I have a question about accessing dialogdata from wpf/ I have a ProgressDialog :System.Windows.Window
And I am calling it in OnButtonClick like this:
void OnButtonClick(object sender, ...
0
votes
2answers
115 views
Why does ShowDialog always return DialogResult.Cancel?
I have a custom made dialog winform. On it I have a label, textbox and 2 buttons (OK and Cancel). It also declares and defines overloaded execute methods for passing different parameter list.
Dialog ...
0
votes
1answer
146 views
Pause timer-based program at MessageBox.Show()
I have a MessageBox.Show event that I want to also prevents timer-based methods from running while the MessageBox remains open.
Here is my code (Changes the value in a file location on a network ...
0
votes
2answers
363 views
Close form on messagebox answer trouble
I am trying to use this code to close a form on a specific answer of a message box. I keep receiving an error saying that neither Yes nor No belong to DialogResult::. I basically copied this code ...
0
votes
1answer
236 views
Can I use dialogs and DialogResult on a UserControl with WPF?
I've a UserControl and I need to get input from a dialog. However, when I try to do this:
AddPassword addPassword = new AddPassword();
if(addPassword.ShowDialog() == == ...
0
votes
4answers
154 views
Return to the first dialog
I have a WinForm that is used as a Dialog with just OK and Cancel buttons. So:
Dim sr As New SlideRangeDialog
Dim dr As Windows.Forms.DialogResult
dr = sr.ShowDialog
I have an If/Then to see if the ...
0
votes
1answer
535 views
How to get dialog result from WebBrowser.ShowPageSetupDialog
I'm using a WebBrowser control in my Visual C# (.net 2.0) application.
Now I'd like to add a print button which shows the page setup dialog and then directly prints when the user presses the OK button ...
-1
votes
3answers
71 views
Trouble with Form.DialogResult
private void mnuCustomerAdd_Click(object sender, EventArgs e)
{
CustomerForm frmCust = new CustomerForm("Add A New Customer");
int index = lstCustomers.SelectedIndex;
if ...
-2
votes
2answers
62 views
How to loop the dialogresult
Form1 frm = new Form1();
frm1.ShowDialog();
I use this to create new form to do some stuff(not important), and then after i'm done with the form i display dialogresult to open that same form again.
...