vote up 2 vote down star
2

Some of the controls I've created seem to default to the old Windows 95 theme, how do I prevent this? Here's an example of a button that does not retain the Operating System's native appearance (I'm using Vista as my development environment):

HWND button = CreateWindowEx(NULL, L"BUTTON", L"OK", WS_VISIBLE | WS_CHILD | BS_PUSHBUTTON,
                                  170, 340, 80, 25, hwnd, NULL, GetModuleHandle(NULL), NULL);

I'm using native C++ with the Windows API, no managed code.

flag

3 Answers

vote up 3 vote down check

I believe it has got nothing to do with your code, but you need to set up a proper manifest file to get the themed controls.

Some info here: @msdn.com and here: @blogs.msdn.com

You can see a difference between application with and without manifest here: heaventools.com

link|flag
vote up 3 vote down

To add a manifest to the application you need create a MyApp.manifest file and add it to the application resource file:

//-- This define is normally part of the SDK but define it if this 
//-- is an older version of the SDK.
#ifndef RT_MANIFEST
#define RT_MANIFEST              24
#endif

//-- Add the MyApp XP Manifest file
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "MyApp.manifest"

Here is a simple MyApp.manifest file for a Win32 application:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
    version="1.0.0.1"
    processorArchitecture="X86"
    name="Microsoft.Windows.MyApp"
    type="win32"
/>
<description>MyApp</description>
</assembly>

If you application depends on the other dlls these details can also be added to the manifest and Windows will use this information to make sure your application always uses the correct versions of these dependent dlls.

For example here are the manifest dependency details for the common control and version 8.0 C runtime libraries:

<dependentAssembly>
    <assemblyIdentity
        type="win32"
        name="Microsoft.Windows.Common-Controls"
        version="6.0.0.0"
        processorArchitecture="X86"
        publicKeyToken="6595b64144ccf1df"
        language="*"
    />
</dependentAssembly>
<dependentAssembly>
  <assemblyIdentity
        type="win32"
        name="Microsoft.VC80.CRT"
        version="8.0.50608.0"
        processorArchitecture="x86"
        publicKeyToken="1fc8b3b9a1e18e3b" />
</dependentAssembly>
link|flag
Good stuff, cheers – conmulligan Sep 22 '08 at 23:59
vote up 0 vote down

Hi,

How do I add the manifest file in C# if my project is a Class Library? I need it as a Class Library since it's going into a 3rd party app so I don't have control over that other app (which is why I can't do Application.EnableVisualStyles() before that app's Application.Run()).

All of the examples I've found online were about C++ and doing defines somewhere and sometimes calling InitControlsEx(), etc. etc. I've spent 5 hours trying to figure this out now. Please help! :)

link|flag
This is not an answer to the question. Please do not post items like this. If you have your own question, ask a question properly. – ephemient Jun 21 at 22:52

Your Answer

Get an OpenID
or

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