tags:

views:

323

answers:

1

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">
+1  A: 

Have you tried the Window.Icon property?

siz