如何为WPF选择图标作为应用程序的图标?

发布于 2024-09-29 10:57:20 字数 65 浏览 1 评论 0原文

我已经设置了用于我的应用程序的图标,但我的表单上仍然有默认图标。我怎样才能选择它的图标作为应用程序的一组图标?请帮忙

I have set the icon to use for my application but my form still having the default icon on it. How can I select its icon to be the one set for the application? Please help

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

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

发布评论

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

评论(2

゛清羽墨安 2024-10-06 10:57:20

设置应用程序的图标应该延续到所有窗口,除非被覆盖。

您可能通过 Visual Studio 运行该应用程序,在这种情况下,您将运行 vshost.exe。尝试直接从 Release 目录运行您的应用程序,您应该会看到该图标出现在 Windows 中。

Setting the icon for the application should carry over to all windows, except when overridden.

You may be running the application through Visual Studio, in which case you will be running vshost.exe. Try running your application directly from the Release directory, and you should see the icon appear in your Windows.

橙幽之幻 2024-10-06 10:57:20

您需要明确设置窗口的图标,例如

<Window x:Class="FFTP.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow"
        Icon="App.ico">
.
.
.
</Window>

You need to set the Icon for the window explicitly like

<Window x:Class="FFTP.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow"
        Icon="App.ico">
.
.
.
</Window>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文