如何在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">

最佳答案

我知道那已经很老了,但是现在我遇到了同样的问题,因此我决定提供解决方案。

您不能将图标与WindowStyle'ToolWindow'一起使用,但可以使用'SingleBorderWindow',并且在属性ResizeMode中使用值'NoResize'。现在,您具有与“工具窗口”相同的行为,但带有图标。

07-24 09:26