如何更改WPF应用程序的桌面快捷方式图像?
我正在创建一个 WPF 应用程序,并且想发布它。因此,我创建了一个新的安装和部署项目,并向其中添加了我的应用程序。现在,当我创建安装文件并运行它时......它创建了一个桌面快捷方式。但是桌面快捷方式上的图像是Windows默认的,我想将其更改为另一个图标文件。请告诉我该怎么做。 谢谢。
I am creating a WPF Application, and I wanted to publish it. So I created a new Setup and Deployment project, and added my application to it. Now, when I created the setup file and ran it...it created a desktop shortcut. But the image on the desktop shortcut was a windows default, and I want to change it to another icon file. Please tell me how to do that.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先,您需要向项目添加一个图标。在图标的属性中,将“构建操作”设置为“资源”。
然后,在主 Window.xaml 文件中,设置 Icon 属性。
First, you will need to add an icon to your project. In the properties of your icon, set Build Action to Resource.
Then, in your main Window.xaml file, set the Icon property.
您还可以将 .ico 文件添加到用户的程序文件文件夹中。之后,您可以将快捷方式添加到用户的桌面。重要的一点是您应该将快捷方式的目标配置为该 .ico 文件夹。
我希望这有帮助
And also you can add an .ico file to user's program files folder. After that you can add the shourtcut to user's desktop. Important point is you should configure the shourtcut's target to that .ico folder.
I hope this helps
打开应用程序的“属性”窗口。在应用程序部分有“图标和清单”。在那里添加图标。更多详细信息请参见此处
Open Properties window of application. In Application section there is "Icon and manifest". Add icon there. More details is here