I am programming strictly in C and WinAPI, no C++ or C#. I am a beginner and just learning to draw controls etc. The thing is that when I create Windows or other controls like Command Buttons, they have Windows Native look. Take a look at this:

This is look I am getting!

But in Windows 7, the command buttons look like this:

enter image description here

Now, how do I get command buttons in my program to look like that. Is it even possible? I am following this tutorial, for reference: http://www.zetcode.com/tutorials/winapi/

Thanks.

link|improve this question

70% accept rate
feedback

2 Answers

up vote 7 down vote accepted

You enable visual styles for your app by providing an XML manifest, either as a separate file or as an embedded resource. See Enabling Visual Styles for details.

link|improve this answer
Thanks a lot for the quick reply! Now, my app is looking exactly like I want. – Ishan Sharma Apr 14 '11 at 12:34
feedback

That's how the controls looked back in the 1990s, before themes (visual styles) were invented. As you've noticed, modern buttons are now painted all fancy-pants with gradients and throbbing and all that. But for backwards-compatibility reasons, you have to specifically request that your controls get that treatment, or they'll fall back to the legacy style.

You do that by specifying a manifest. You can either add one in plain text format to your application's root directory, or you can have Visual Studio (2005 and later) automatically embed one in your EXE.

The second route is the way I'd go. Add the following code to your stdafx.h file to inform the compiler that you want it to add the manifest automatically upon building your project:

#if defined _M_IX86
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_IA64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_X64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#else
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
#endif

This MSDN article has more information on visual styles than you could ever want.


And if you really want your application to look native, you need to change the background brush used for the main window. By default, it's set to use the same color as a textbox's background (white).

You want to use the color used to paint 3D controls, instead. Modify the hbrBackground member of your WNDCLASS (or WNDCLASSEX) structure as shown here:

wc.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);

Why do you have to add 1? For backwards-compatibility reasons, again. The details are boring. :-)

link|improve this answer
Thanks for the answer! :) I am not including stdafx.h, so I just went via manifest. Your advice about colors was really helpful! Just fixed the white color of background! – Ishan Sharma Apr 14 '11 at 12:45
@Ishan: You can actually put that code anywhere you want, stdafx.h was just a suggestion because it's included in the default templates. It's used for precompiled headers, something you probably want to get used to if you're going to create any non-trivial apps in the future. And the code just tells the compiler to automatically create and insert a manifest. It's all about that manifest. Glad you were able to figure it out! – Cody Gray Apr 14 '11 at 12:47
I did not know that! Thanks. – Ishan Sharma Apr 14 '11 at 13:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.