vote up 0 vote down star

How to put a C# programm (ex WPF or WF) under desctop Icons (like a wallpaper)?

  • I want my Old Good XP Active Desktop made by a some open source C# programm on my Win 7!)

  • Something like this - Fences . They have there "windows" appearing underneath icons. I do not want to manage Icons - just put my window under them... BTW any one knows about such operations in other OS’s (Mac etc)?

  • And I DO NOT WANT TO MANAGE ALL THE ICONS ON MY OWN LIKE bumptop

flag

77% accept rate
you might want to phrase that a bit better. you want the program you write to appear underneath the desktop icons when it runs? – Scott M. Oct 27 at 2:30
Yes I do want the program you write to appear underneath the desktop icons when it runs!) – Ole Jak Oct 27 at 11:02

2 Answers

vote up 1 vote down check

Short answer is you can't really do it (in managed C# anyway). If it's possible, you would need to use Interop, and you'd likely be calling something that Windows doesn't offer as an API.

... although... as Ole Jak mentioned, Stardock looks to be doing it somehow...

The desktop is its own contained item. The same process handles the icons and the wallpaper "behind" those icons.

You are allowed to change the wallpaper to a different image, and you used to be able to create an Active Desktop where HTML content would be displayed, but this was discontinued in Vista.

What are you actually trying to do? Maybe there's another way to achieve a similar result?

link|flag
I want my Old Good XP Active Desktop made by a some open source C# programm on my Win 7!) – Ole Jak Oct 27 at 11:05
The problem with that is you're talking about the core of the operating system - it's incredibly hard to do anything with that unless Microsoft wants you to! – Damovisa Oct 27 at 13:17
You say that the desktop is core... Hm... But for ex they stardock.com/products/fences have there "windows" appearing underneath icons. I do not want to manage Icons - just put my window under them... BTW any one knows about such operations in other OS’s (Mac etc)? – Ole Jak Oct 27 at 15:09
Ok, that program is interesting... My guess is that they're using some quite low-level operations rather than calling an established API. I honestly don't know how they're doing it. Maybe they're removing all icons and duplicating their behaviour in their own program? – Damovisa Oct 27 at 23:13
vote up 0 vote down

There was DreamScene for vista. You could put a video as explorer background. I dont know if you could run a C# program to output the background video.

link|flag
run a C# program to outputvideo is not so hard but how to set it as the back and if we for ex want to interect with it... – Ole Jak Oct 27 at 11:16

Your Answer

Get an OpenID
or

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