Hello, I've been using Rainlendar for some time and I noticed that it has an option to put the window "on desktop". It's like a bottomMost window (as against topmost).
How could I do this on a WPF app?
Thanks
|
3
|
Hello, I've been using Rainlendar for some time and I noticed that it has an option to put the window "on desktop". It's like a bottomMost window (as against topmost). How could I do this on a WPF app? Thanks
|
||
|
|
|
|
My answer is in terms of the Win32 API, not specific to WPF (and probably requiring P/Invoke from C#): Rainlendar has two options:
|
||||
|
|
|
Warning The accepted answer suggests that you call SetParent to create a child of the Desktop. If you do this, you cause the Win32 Window Manager to synchronize the input queue of the Desktop to your child window, this is a bad thing - Raymond Chen explains why. Basically, if your window hangs or blocks (say with a MessageBox) you will lock up your desktop. |
||||||||
|
|
|
This is what I used so the window is always "on bottom":
...
|
||
|
|
|
|
The OnDesktop version that Im using:
I was having some trouble finding the Program Manager window, but Kimmo, the creator from Rainlendar gave me a link to the code: http://www.ipi.fi/~rainy/legacy.html If anybody needs more detail just look in library/rainwindow.cpp for the function SetWindowZPos. |
||
|
|