如何更改WPF应用程序的桌面快捷方式图像?

发布于 2024-10-17 23:26:48 字数 151 浏览 1 评论 0原文

我正在创建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

欢你一世 2024-10-24 23:26:48

首先,您需要向项目添加一个图标。在图标的属性中,将“构建操作”设置为“资源”。

然后,在主 Window.xaml 文件中,设置 Icon 属性。

<Window x:Class="..."
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
**Icon="YourIcon.ico"**>

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.

<Window x:Class="..."
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
**Icon="YourIcon.ico"**>
夏至、离别 2024-10-24 23:26:48

您还可以将 .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

无法回应 2024-10-24 23:26:48

打开应用程序的“属性”窗口。在应用程序部分有“图标和清单”。在那里添加图标。更多详细信息请参见此处

Open Properties window of application. In Application section there is "Icon and manifest". Add icon there. More details is here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文