I am trying to user a this project which is adapted from the Vista Bridge sample on MSDN http://msdn2.microsoft.com/en-us/library/ms756482.aspx.
WPFFolderBrowser.WPFFolderBrowserDialog fbd = new WPFFolderBrowser.WPFFolderBrowserDialog();
fbd.Title = "Title";
fbd.InitialDirectory = Environment.CurrentDirectory;
if (fbd.ShowDialog() == true)
{
}
All goes fine but i just want to center the browsing window and can't seem to find the needed property for this. If anyone has used it or knows about it, please give me a hint !