选定的图标未应用于 WPF 应用程序

发布于 2024-11-16 13:49:09 字数 73 浏览 2 评论 0原文

我更改了主项目属性图标和清单选项中的图标。然而,运行应用程序后,会显示默认图标。

知道为什么会发生这种奇怪的行为吗?

I have changed the icon in the Main Project Properties Icon and Manifest option. Yet, after running the App, the default Icon is what shows up.

Any idea why such odd behavior will occur?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

缱绻入梦 2024-11-23 13:49:09

默认图标是显示在资源管理器中还是显示在任务栏按钮中?对于后者:还要更改表单的图标,因为任务栏按钮图标不是从 exe 文件中检索的,而是从表单的 Icon 属性中检索的。

对于 WPF 应用程序,请使用 XAML 中 Window 元素的属性

Icon="Images\Logo.ico"

以使窗口显示图标。

Does the default icon show up in the explorer or does it show up in the taskbar buttons? In case of the latter: change the icon for the forms as well, as the task bar button icon is not retrieved from the exe file, but from the form's Icon property.

For WPF applications, use the attribute

Icon="Images\Logo.ico"

for the Window element in XAML to have the window show the icon.

无人问我粥可暖 2024-11-23 13:49:09

该图标在调试/发布模式下不显示,您需要使用 ctrl+F5 运行应用程序, 来源

The icon doesn't show in debug / release mode, you need to run the application using ctrl+F5, source

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