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 refer
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; }