Install WPFFolderBrowser 1.0.2 from nuget gallery to use the Windows Vista / Windows 7 Folder Browser Dialog from your WPF projects, without any additional dependencies.
Install-Package WPFFolderBrowser
then import WPFFolderBrowser
using WPFFolderBrowser;
private void BrowseFolder() { WPFFolderBrowserDialog dd = new WPFFolderBrowserDialog(); var result = dd.ShowDialog(); if (result.HasValue) { TxtFvsAccessDbPath = dd.FileName; } }

0 comments :
Post a Comment