プレーンな Win32 API を使用して、C++ で Word アドインを作成しました。いくつかのダイアログが開きますが、これらは常に Vista 以降では commctl6 ビジュアル スタイルなしで表示されます。マニフェストは、RT_MANIFEST およびリソース ID - 2 として配置されます (以下を参照)。自分のテスト アプリから同じ機能/ダイアログを呼び出すと、ビジュアル スタイルは問題ありません。
マニフェストがあるにもかかわらず、Word がどのようにアドインで視覚スタイルを使用できないようにしているのですか?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="x86" publicKeyToken="6595b64144ccf1df" language="*"></assemblyIdentity>
</dependentAssembly>
</dependency>
</assembly>