如何在winform应用程序中添加Windows 7视觉样式?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在winform应用程序中添加Windows 7视觉样式?相关的知识,希望对你有一定的参考价值。
我必须改变.net framework 3.5的win form应用程序的外观和感觉。所以我想添加窗口7主题或视觉样式,是否有任何示例应用程序可用?并建议做什么改变我的应用程序的外观和感觉?
答案
Microsoft®.NETFramework的Windows API代码包包含使用.Net的Win7 / Vista功能的源代码。
http://code.msdn.microsoft.com/WindowsAPICodePack
另一答案
为此编写自己的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文件中。
以上是关于如何在winform应用程序中添加Windows 7视觉样式?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 C# 控制台或 WinForms 应用程序中使用 Windows 安全的确认证书弹出窗口选择证书?