Skip to content

Instantly share code, notes, and snippets.

@davidblurton
Created April 2, 2013 11:55
Show Gist options
  • Save davidblurton/5291687 to your computer and use it in GitHub Desktop.
Save davidblurton/5291687 to your computer and use it in GitHub Desktop.
Ookii example
using (FolderBrowserDialog browseDialog = new FolderBrowserDialog())
{
if (browseDialog.ShowDialog() == DialogResult.OK)
{
m_Path.Text = browseDialog.SelectedPath;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment