How can one create a user control that has the same functionality (along with some extended features) of OpenFileDialog in C#? I\'ve followed this, but I could not find a s
OpenFileDialog is a Windows built-in feature (it's non-.NET at all), so extending it is quite a nontrivial task. Why don't you just build it from scratch or look for any existing solutions?