I’ve inherited a desktop application which has a custom .NET file chooser that is embedded in a control, but it has some issues.
I’d like to replace it with a non-custom File Chooser (like the OpenFileDialog).
However, for a variety of reasons it needs to be embedded in the parent control not a popup dialog.
Is there a control I’m missing, or does MS only provide the popup dialog out of the box?
The .Net control is a thin wrapper for the common dialog built into windows, and that is a dialog. So there is no way to embed it as though it were a control.