'Icon does not appear in Windows Taskbar

I work on WPF application and I finishing it, but I notice that when I run the application, the application Icon does no appear in Windows task bar ?

enter image description here

Although I assigned icon for my application in application properties.

Any idea ?

Thanks in advance Abdusalam



Solution 1:[1]

add ShowInTaskbar="True" in window like below

<Window ShowInTaskbar="True" > </Window>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Eric Aya