选定的图标未应用于 WPF 应用程序
我更改了主项目属性图标和清单选项中的图标。然而,运行应用程序后,会显示默认图标。
知道为什么会发生这种奇怪的行为吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认图标是显示在资源管理器中还是显示在任务栏按钮中?对于后者:还要更改表单的图标,因为任务栏按钮图标不是从 exe 文件中检索的,而是从表单的
Icon
属性中检索的。对于 WPF 应用程序,请使用 XAML 中
Window
元素的属性以使窗口显示图标。
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
for the
Window
element in XAML to have the window show the icon.该图标在调试/发布模式下不显示,您需要使用 ctrl+F5 运行应用程序, 来源
The icon doesn't show in debug / release mode, you need to run the application using ctrl+F5, source