I recently migrated a project from VS2005 to VS2015. In doing so, my project now refuses to use the system look and feel and uses the windows 98 look and feel. When built in 2005 it does use the system appearance.
The .rc
file that describes the dialogs is identical as I copied and pasted the original one over. The properties are all the same.
I have searched around and one possibilty is the FlatStyle property, which can be set to system, however none of my dialogs have this property.
Furthermore, i have looked through this and tried the suggestions but none seem to work.
I believe the issue to be a setting I have to disable for 2015 so that the Application adapts to the system look and feel.
So how do I make my application adapt to the current system?
Here is an example of a dialog:
STYLE DS_SETFONT | DS_3DLOOK | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
EXSTYLE WS_EX_ACCEPTFILES | WS_EX_APPWINDOW