DialogResult with FolderBrowserDialog in WPF
Asked Answered
S

4

9

First time I'm implementing a FolderBrowserDialog in WPF and I'm not loving it one bit...

Aside from the issues I had figuring out that Windows.Forms wasn't referenced in my project, now I'm having trouble trying to see what the DialogResult return value is...

With an OpenFileDialog, in the past I've done it thusly:

OpenFileDialog ofd = new OpenFileDialog();
Nullable<bool> result = ofd.ShowDialog();

if (result == true)
{
    // all went well, carry on and do your thing here
}

Unfortunately, I'm now getting errors with this saying something about conversions from type DialogResult to bool and whatever have you.

Can't seem to find anything on how to complete this step in using the dialog in WPF, can anyone shed some light?

Thanks in advance!

EDIT

Here's my code as amended without the type conversion error. I'm not sure what value to check result against. Typically I'd use DialogResult.OK except that doesn't appear as a valid value here.

    private void btnBrowse_Click(object sender, RoutedEventArgs e)
    {
        if (cmbTemplate.SelectedItem == "Blockbusters")
        {
            FolderBrowserDialog fbd = new FolderBrowserDialog();

            DialogResult result = fbd.ShowDialog();

            //
            // ERROR: 'System.Nullable<bool>' does not contain a definition for 'OK'
            // and no extention method 'OK' accepting a first argument of type
            // 'System.Nullable<bool>' could be found.
            //
            if (result == DialogResult.OK)
            {
                txtSource.Text = fbd.SelectedPath;
            }
        }
    }
Shamrao answered 11/2, 2013 at 13:58 Comment(4)
The Windows Forms Dialog does not return nullable bool like the WPF dialogs do, but DialogResult. Just a hint. :)Jojo
If you can't understand the errors about conversions between different types maybe you should go back to OOP and C# basics before trying to do something in WPF, which is a complex framework not suitable for unexperienced developers.Bathsheb
@HighCore while your suggestion may have been the most pertinent, it's also irrelevant. I understand the error and that's why I tried setting result to a DialogResult object, but that still isn't working in the if statement - hence my confusionShamrao
you can use var instead of Nullable<bool>, var result = ofd.ShowDialog();Literacy
S
17

Okay so it turns out all answers other answers here were right.

They just missed out one thing and I think that was my fault...

Every time I saw DialogResult in Intellisense when trying to use it in my if statement (as I've been told to use, I saw this:

bool? Window.Dialog.Result
Gets or sets the dialog result value, which is the value that is returned from the
System.Windows.Window.ShowDialog() method.

Exceptions:
System.InvalidOperationException

This particular DialogResult object isn't the one I was looking for.

What finally worked was the following:

DialogResult result = fbd.ShowDialog();

if (result == System.Windows.Forms.DialogResult.OK)
{
    // do work here
}

It's worth noting that I do have System.Windows.Forms referenced in my usings which is why I never thought to reference the class from System as in the above snippet. I thought it was using this anyway.

Shamrao answered 12/2, 2013 at 7:22 Comment(2)
As an aside, I highly recommend against doing things like cmbTemplate.SelectedItem == "Blockbusters" in WPF. UI is not Data, therefore you should not treat UI elements as data elements and define your program logic based on the state of these elements.Bathsheb
Well noted and typically I don't, but as I'm new to WPF, I haven't found a better way of doing it (not that I've tried very hard). Although the text for each item in the combobox isn't meant to be changed at any point during execution so I'm not too worried about it reallyShamrao
S
0

DialogResult is an enumeration and defines values to indicate the return values of dialogs.

In your code you should check for DialogResult.OK to init your variable with the path selected in the dialog. DialogResult.OK is returned when the "OK"-Button is pressed in the dialog, otherwise is DialogResult.Cancel returned.

if (result == DialogResult.OK){
  txtSource.Text = fbd.SelectedPath;
}
Semitone answered 12/2, 2013 at 6:58 Comment(1)
As taken from the question: Typically I'd use DialogResult.OK except that doesn't appear as a valid value here.Shamrao
S
0

Late answer here but why not just . .

private void SelectFolder()
{
    var dialog = new FolderBrowserDialog();
    var status = dialog.ShowDialog(); // ShowDialog() returns bool? (Nullable bool)
    if (status.Equals(true))
    {
        SelectedFolderPath = dialog.SelectedPath;
    }
}

You can see the result in debugging session. It returns false when the Cancel button is clicked.

Souse answered 14/7, 2018 at 10:24 Comment(0)
L
-1

DialogResult.(OK, Cancel whatever you want to check),

if (result == DialogResult.OK) // DialogResult.(Your desired result, select from the list it generates)
{
    txtSource.Text = fbd.SelectedPath;
}
Literacy answered 12/2, 2013 at 6:51 Comment(1)
As taken from the question: Typically I'd use DialogResult.OK except that doesn't appear as a valid value here.Shamrao

© 2022 - 2024 — McMap. All rights reserved.