如何在winform应用程序中添加Windows 7视觉样式?

时间:2010-01-21 12:34:45

标签: c# .net winforms windows-7

我必须改变.net framework 3.5的win form应用程序的外观和感觉。 所以我想添加窗口7主题或视觉样式,是否有任何示例应用程序可用? 并建议做些什么来改变我的应用程序的外观和感觉?

2 个答案:

答案 0 :(得分:1)

用于Microsoft®.NETFramework的 Windows API代码包包含使用.Net的Win7 / Vista功能的源代码。

http://code.msdn.microsoft.com/WindowsAPICodePack

答案 1 :(得分:0)

为此编写自己的MANIFEST文件。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
    version="9.0.0.0"
    processorArchitecture="x86"
    name="ApplicationName.exe"
    type="win32"
/>
<description>YourApplicationName</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
        <requestedPrivileges>
            <requestedExecutionLevel level="asInvoker" uiAccess="false"/>
        </requestedPrivileges>
    </security>
</trustInfo>
</assembly>

将其另存为.exe.manifest或将其嵌入.resx文件中。