Hi
I have a window in WPF (.net4.5).
I don't want it to be shown in Taskbar & Alt+tab list.
so i wrote the following:
AllowsTransparency="True"WindowStyle="None"
ResizeMode="NoResize"
Topmost="True"
ShowInTaskbar="False"
taskbar is hidden as expected.
BUT- alt-tab is still shown. what else I should do..?
tnx!!