//功能:使你的用户界面呈现xp的风格效果
//适用范围:适用C# 1.0编写的WinForm程序
//使用方法:将下面的文件保存成*.exe.manifest,和你的应用程序放在一个目录
//注意:要改变风格的控件需要有 FlatStyle = System.Windows.Forms.FlatStyle.System;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
- <!-- 文件名称 app.exe.manifest --> - <!-- 要求要改变风格的空间的 FlatStyle=System --> - <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="Microsoft.Windows.请修改为应用程序名称" type="win32" />
<description>请修改为应用程序名称</description>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*" />
</dependentAssembly>
</dependency>
</assembly>
评论