Dialog has a modern look on time design , but old

2020-07-14 12:41发布

I'm creating a dialog with the resource editor of Visual C++.

When I run the test button of the editor, components of the dialog are displayed with a modern look, while when running the application that creates and shows the dialog, it's displayed with an old look...I'm just using WINAPI calls to display the dialog, not MFC.

Here are the screenshot (the upper image is an example of UI look on design time, the other one is the UI look on run time):

link text

Does anyone know what I'm doing wrong?

6条回答
We Are One
2楼-- · 2020-07-14 12:42

Does your application manifest specify that you want to use comctl32.dll version 6? This is one of the requirements of using visual styles and a more modern look in windows XP.

To create a manifest and enable your application to use visual styles.

Link to ComCtl32.lib and call InitCommonControls (see the Platform SDK documentation in the MSDN Library).

Add a file called YourApp.exe.manifest to your source tree that has the following XML format:

<?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.0"
  processorArchitecture="X86"
  name="CompanyName.ProductName.YourApp"
  type="win32"
 />
 <description>Your application description here.</description>
 <dependency>
  <dependentAssembly>
   <assemblyIdentity
    type="win32"
    name="Microsoft.Windows.Common-Controls"
    version="6.0.0.0"
    processorArchitecture="X86"
    publicKeyToken="6595b64144ccf1df"
    language="*"
   />
  </dependentAssembly>
 </dependency>
</assembly>

Add the manifest to your application's resource file as follows

CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "YourApp.exe.manifest"

Note: When you add the previous entry to the resource you must format it on one line. Alternatively, you can place the XML manifest file in the same directory as your application's executable file. The operating system will load the manifest from the file system first, and then check the resource section of the executable. The file system version takes precedence.

查看更多
手持菜刀,她持情操
3楼-- · 2020-07-14 12:48

I have a solution for VC6, but I am not sure if it will work in VS 2008.
(also check this article for what is causing the problem)

Here is an example of a simple manifest file that I've used to solve it:

Create the below XML file,

<?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.0"
    processorArchitecture="X86"
    name="Microsoft.Windows.YourApplication"
    type="win32"
/>
<description>YourApplication</description>
<dependency>
    <dependentAssembly>
        <assemblyIdentity
            type="win32"
            name="Microsoft.Windows.Common-Controls"
            version="6.0.0.0"
            processorArchitecture="X86"
            publicKeyToken="6595b64144ccf1df"
            language="*"
        />
    </dependentAssembly>
</dependency>
</assembly>

First, let's add two lines to the resource.h file. Just copy and paste the following:

#define IDR_MANIFEST  1
#define RT_MANIFEST  24

Now, open the application custom resource file. Usually, it's located in the res directory; the default extention is .rc2. Manually add the following line:

// Add manually edited resources here...
IDR_MANIFEST RT_MANIFEST MOVEABLE PURE
             "res\\ApplicationManifestXMLFile"

Replace ApplicationManifestXMLFile with the actual file name (the XML you have created).

查看更多
SAY GOODBYE
4楼-- · 2020-07-14 12:52

Some Windows Forms controls will assume their new guise as soon as the application is bound to version 6.0 of Comctl32.dll.
and how you can achieve that is described under Using Windows XP Visual Styles With Controls on Windows Forms

查看更多
冷血范
5楼-- · 2020-07-14 12:56

Have you got a manifest correctly set up to use version 6 of commctl32.dll in your project? If not, you won't get the themed controls.

In later versions of Visual Studio, this is usually done with a #pragma, like so (this one is for x86, copied from a new project generated with VS2005):

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

If you add this to one of the source files in your project and rebuild, the manifest will be generated by the linker and added to your application. For other processor architectures, you'll need to change the "processorArchitecture" value. (Why VS can't figure this out for itself is a mystery left to the reader to solve...)

(As some others have noted, you can also manually generate the manifest and add it to the .rc file. This is more long-winded, but does give you complete control of the manifest's contents.)

查看更多
孤傲高冷的网名
6楼-- · 2020-07-14 13:00

Expanding on the existing answers...

MSDN: Build Requirements for Windows Vista Common Controls

Dropping the following into stdafx.h worked well for me, and helped to display at runtime the thin border styling shown in the VS dialog resource editor:

#ifdef UNICODE
#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
#endif
查看更多
Ridiculous、
7楼-- · 2020-07-14 13:08

The question specifies C++ and this other question shows how to do it more cleanly.

For .Net 2.0+, please see >this MSDN article< for how to do it with one line of code, to wit:

Main() 
{
    Application.EnableVisualStyles();
}

I hope this helps someone searching this topic.

查看更多
登录 后发表回答