Ookii.Dialogs is a class library for .Net applications providing several common dialogs. Included are classes for task dialogs, credential dialogs, progress dialogs, input dialogs, and common file dialogs.
Questions tagged [ookii]
7 questions
3
votes
2 answers
Ookii VistaFolderBrowserDialog and getting selected folder
I am trying to use the Ookii dialog pack to spawn the new Vista style folder selection dialog. That all works with this simple code:
VistaFolderBrowserDialog dlg = new VistaFolderBrowserDialog();
dlg.SelectedPath =…

Richard Benson
- 1,477
- 12
- 20
1
vote
1 answer
Alternative to Ookii Dialogs in WPF to select multiple folder?
Does anyone know of an alternative to Ookii Dialogs in WPF that allow to select multiple folders at once?
I think I've seen one, but I can't find anymore.
Thanks!

Thiago
- 13
- 2
0
votes
1 answer
WPF app with embedded WebView2 suddenly shuts down without any visible exception when opening Oookii save file dialog
I'm trying to use an embedded WebView2 control in my WPF application, and open an Ookii VistaSaveFileDialog in response to communication from the webview.
However, once I've run the dialog's ShowDialog method (which blocks while waiting for a user…

Zev Spitz
- 13,950
- 6
- 64
- 136
0
votes
1 answer
Folder Dialog return to dialog if criteria not met
I'm using the Ookii Vista folder dialog for ease of use, and I have this code going on which is called from a button:
using System;
using System.IO;
using System.Linq;
using System.Windows.Forms;
using Ookii.Dialogs;
private string…

Jaymar
- 27
- 7
0
votes
2 answers
Folder Browser Dialog Inital Folder
I was looking for and Open Folder Dialog (wpf). I get the Ookii dialogs for wpf and I use VistaFolderBrowserDialog. (I don't like the FolderBrowserDialog of Windows Forms).
I save the "last open folder". So the next time the user open this…

Beatriz
- 3
- 2
0
votes
1 answer
Add ookii dialogs into a Sharpdevelop VB.NET project
When searching for an alternative to the FolderBrowserDialog, I found here answers mentionning the "ookii dialogs" librairies and I would like to use these dialogs in my project. Being very new to VB.NET, I could not find precise instructions to…

Nienscecco
- 1
- 1
0
votes
1 answer
Dialog opens folder at wrong path
I have this helper method to allow a user to select a folder where we will save images to:
internal static string SelectFolder(Window window, string initialDirectory)
{
var dialog = new Ookii.Dialogs.Wpf.VistaFolderBrowserDialog
{
…

Bassie
- 9,529
- 8
- 68
- 159