vote up 1 vote down star
2

I'm starting a project to make a wall paper rotator for computers with multiple monitors.

1) how do you detect the monitors in windows and the associated resolution

2) how would i set the image per monitor. do I make one image that's crafted together or do I set each one individually and how?

thanks

flag

66% accept rate
This all depends on the client used to run the app ... Citrix takes your dual (or more) monitors and turns it into one huge one. – Martin Aug 19 at 18:44
Can someone please edit the title to correct the spelling. Pretty-please. :) – John Kraft Aug 19 at 18:47
oops on the title. @ martin you probably wouldn't change the background on a citrix environment anyway – Crash893 Aug 19 at 19:35

2 Answers

vote up 1 vote down

To answer the second question, you craft one image:

How do I put a different wallpaper on each monitor? - Raymond Chen

link|flag
vote up 1 vote down
  1. You can get information about all screens using the System.Windows.Forms.Screen class. Use their bounds properties to determine their layout.
  2. Not possible on Windows (XP), you'll have to craft a big background image using the drawing routines in System.Drawing.

This "thread" contains some more info on manipulating wallpapers in windows: why does this code lock my files?

link|flag

Your Answer

Get an OpenID
or

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