How to enable visual styles without a manifest

There’s actually a third way with no manifests whatsoever, though it’s rather hacky: #include <windows.h> // NOTE: It is recommended that you delay-load ComCtl32.dll (/DelayLoad:ComCtl32.dll) // and that you ensure this code runs before GUI components are loaded. // Otherwise, you may get weird issues, like black backgrounds in icons in image lists. ULONG_PTR EnableVisualStyles(VOID) … Read more