I have successfully created an owner drawn button.
But how do I now draw/color the darn thing, to make it look like a Button using the Windows API? Currently, it just looks like a colored label?
Any C examples?
I have successfully created an owner drawn button.
But how do I now draw/color the darn thing, to make it look like a Button using the Windows API? Currently, it just looks like a colored label?
Any C examples?
Sounds like you're looking for DrawFrameControl. For the cool, Vista/7-looking controls, look at uxtheme.dll.
For the modern-looking buttons, just copy/paste this into your source:
#pragma comment(linker,"\"/manifestdependency:type='win32' \ name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \ processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") Well, unless you want to memorize it...