vote up 1 vote down star

I'm trying to make an application that needs to draw on the desktop, behind the icons so it appears to replace the desktop wallpaper. I've found a few solutions to this, but most of them didn't work very well (lots of flickering). One solution seems to be what I'm looking for, but I don't really get it. I've done mostly C# applications using either higher-level graphics libraries or just Windows Forms, and some C++ but only on non-Windows platforms.

If anyone could "translate" it for me or provide me with an alternative solution, it would be much appreciated!

flag

3 Answers

vote up 0 vote down

Can't you just replace the desktop wallpaper, then when your application exits restore it?

link|flag
The thing is, I'm looking to continuously update the screen. Constantly changing the desktop wallpaper would be quite slow of course. – nardi11011 Nov 5 at 21:42
vote up 0 vote down

Yes, with interop, see this thread.

link|flag
That would draw on top of everything; I'm looking to draw behind everything (except the desktop wallpaper). – nardi11011 Nov 6 at 9:20
vote up 0 vote down

You can find inspiration in the VLC media player code. there's a wallpaper mode that does what you're looking for.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.