在 WPF 中为 ToolWindow 添加图标

发布于 2024-08-06 21:38:12 字数 394 浏览 6 评论 0原文

如何在 WPF 中为 ToolWindow 添加图标?

正如

<Window x:Class="WPFApp.Account"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Accounting Information"
    FontFamily="Calibri" FontSize="13"
    WindowStyle="ToolWindow" ResizeMode="NoResize"
    Width="600" Height="600">

How can I add an Icon for ToolWindow in WPF?

Just as

<Window x:Class="WPFApp.Account"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Accounting Information"
    FontFamily="Calibri" FontSize="13"
    WindowStyle="ToolWindow" ResizeMode="NoResize"
    Width="600" Height="600">

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

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

发布评论

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

评论(2

轻拂→两袖风尘 2024-08-13 21:38:12

我知道这已经很旧了,但我现在也遇到了同样的问题,我决定贡献一个解决方案。

您不能将图标与WindowStyleToolWindow”一起使用,但可以在属性ResizeModeSingleBorderWindow”强> 值“NoResize”。现在您具有与“ToolWindow”相同的行为,但带有图标。

I know that is old but I passed through the same problem now days and I decide to contribute a solution.

You can't use icon with the WindowStyle 'ToolWindow', but you can use 'SingleBorderWindow' and in property ResizeMode the value 'NoResize'. Now you have the same behavior of 'ToolWindow' but with icon.

上课铃就是安魂曲 2024-08-13 21:38:12

您是否尝试过 Window.Icon 属性?

Have you tried the Window.Icon property?

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