How to change the control themes in a Win32 API application?

孤街浪徒 提交于 2019-12-04 12:42:05

You want to Enable Visual Styles by adding a manifest dependency to the common control 6 assembly to your applications manifest.

If you use DevStudio it should be as simple as adding the #pragma directive from the linked page:

#pragma comment(linker,"\"/manifestdependency:type='win32'        
                name='Microsoft.Windows.Common-Controls'
                version='6.0.0.0' processorArchitecture='*'
                publicKeyToken='6595b64144ccf1df' language='*'\"")

SetWindowTheme Function would appear to be the solution. HTH

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!