How To Use OpenFileDialog In WPF Posted byMenolMay 17, 2012Posted inC#.NetTags:open-file-dialog, OpenFileDialog, WPF WPF has it’s own encapsulated version of OpenFileDialog. You can find this under Microsoft.Win32 namespace. Sample code: Microsoft.Win32.OpenFileDialog _ofd = new Microsoft.Win32.OpenFileDialog(); _ofd.ShowDialog(); Share this:TwitterFacebookLike this:Like Loading... Related