如何将自定义图标添加到 Visual Studio 中的安装项目?
我正在尝试向安装项目添加自定义图标。因此,我有自己的自定义徽标,而不是标准安装程序徽标。
为了清楚起见,这是我要更改的图标:
I am trying to add a custom icon to setup project. So instead of standard installer logo I have my custom logo.
To make it clear, here is the icon, which I want to change:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
右键单击“解决方案资源管理器”中的“安装项目”,然后选择“查看”>“查看”用户界面。
这将显示安装程序的所有屏幕。
您要更改的图片是属性BannerBitmap。
您可以针对安装程序的任何屏幕进行自定义。
Right-click the Setup Project in Solution Explorer and select View > User Interface.
This will display all the screens of the installer.
The picture that you want to change is the property BannerBitmap.
You can customize this for any screen of the installer.
只是为了添加到 dhirschl 的答案...您还可以选择更改默认的 BannerBitmap,以便您的所有设置自动具有您自己的徽标,并且您不必担心每次修复它是时候创建一个新的设置了。
René van Bemmelen 提供了有关如何执行此操作的明确说明,可以在此处位于 Microsoft 论坛上。
Just to add to dhirschl's answer ... you also have the option to change the default BannerBitmap so that all your setups have your own logo automatically and you don't have to worry about fixing it every time you create a new setup.
Clear instructions on how to do this are provided by René van Bemmelen and can be found here on the Microsoft forums.