CFileDialog is visually different to Visual Studio File Dialog

466 Views Asked by At

In Visual Studio 2015 the File Dialog used by the IDE looks like this:

File Dialog

In my MFC application, when I use a CFileDialog, example:

CFileDialog dlgImport(TRUE,
    _T(".XSL"), _T(""), OFN_ALLOWMULTISELECT | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY, strFilter, this);

My version is not the same:

MFC File Dialog

I like how the Visual Studio version shows the file type as wider control. Much neater.

How can I implement this behaviour?

0

There are 0 best solutions below