在 WPF 中为 ToolWindow 添加图标
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道这已经很旧了,但我现在也遇到了同样的问题,我决定贡献一个解决方案。
您不能将图标与WindowStyle“ToolWindow”一起使用,但可以在属性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.
您是否尝试过 Window.Icon 属性?
Have you tried the Window.Icon property?