Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Opposite of "always on top"

I want to set my application to be on desktop level, like Windows Gadgets. Is this possible to achieve?

Thing is, i have borderless application I want to run on desktop.

I tried to find the option, but I found only "always on top" which is opposite of what I want to achieve.

like image 609
Danijel Avatar asked Mar 03 '10 14:03

Danijel


2 Answers

The good old SetWindowPos supports a HWND_BOTTOM to place your application as the last one in the order. To use it in C# take a look at PInvoke.Net.

like image 51
Oliver Avatar answered Sep 30 '22 12:09

Oliver


Write the app so that it runs as a service in the background, then implement an actual Windows Gadget as a front-end?

like image 26
GWLlosa Avatar answered Sep 30 '22 10:09

GWLlosa