Home > Blockchain >  How do I disable Manifest in VisualStudio using C ?
How do I disable Manifest in VisualStudio using C ?

Time:11-24

I'd like to have the UI elements switch to the Windows 95 UI for my program. But I am not sure how to disable Manifest in Visual Studio. Setting generate Manifest to off in the Linker doesn't seem to do it. Still new to this, not sure what the process is to shut it off.

CodePudding user response:

Snippet SetWindowTheme(hWnd, L"", L""); SetThemeAppProperties(0); will disable visual style and use classic ui.

  • Related