<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<!--添加UAC管理员权限-->
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator"/>
</requestedPrivileges>
</security>
</trustInfo>
<!--添加操作系统主题风格XPThemes-->
<description>Windows Forms Common Control manifest</description>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*" />
</dependentAssembly>
</dependency>
<!--添加Win10支持-->
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"
Delphi 程序中实现程序自带系统XP主题风格,UAC管理员权限,WIN10支持manifest文件内容
最新推荐文章于 2024-10-17 10:40:02 发布
本文介绍了如何在Delphi XE2中创建一个manifest文件,以使程序在Windows系统中具备XP主题风格,并默认以UAC管理员权限运行,同时支持Windows 10。通过正确配置manifest文件并将其添加到编译过程,生成的EXE文件将显示盾牌标识,表明其具有管理员权限,并能兼容XP系统的视觉效果。
摘要由CSDN通过智能技术生成