What I am looking for is the equivalent of System.Windows.SystemParameters.WorkArea for the monitor that the window is currently on.

Clarification: The window in question is WPF, not WinForms.

link|improve this question

1  
Changed accepted answer to reflect the best way to do this from WPF. System.Windows.SystemParameters.* – chilltemp May 25 '10 at 15:33
The obsession with not using a WinForms namespace seems strange to me, it doesn't gain you anything; instead, it leaves you without the tools you need to properly solve the problem. – Jeff Yates Sep 30 '11 at 13:34
For me, it's not about WinForms vs. WPF. It's about learning something new. I can't decide which way is better if I don't learn both ways. – chilltemp Oct 3 '11 at 15:17
Well, in this scenario there is no "both ways" as there's only one way to do this, which is to use the WinForms stuff. – Jeff Yates Oct 3 '11 at 17:00
@Jeff Yates: You are correct. I dug up the original project that I asked this question for, and found that I used the PrimaryScreen* properties. They solved my needs of the day, but not the actual question I asked. Sorry for the run-around; I've changed the accepted answer accordingly. – chilltemp Oct 13 '11 at 16:45
feedback

4 Answers

up vote 22 down vote accepted

Screen.FromControl, Screen.FromPoint and Screen.FromRectangle should help you with this. For example in WinForms it would be:

class MyForm : Form
{
  public Rectangle GetScreen()
  {
    return Screen.FromControl(this).Bounds;
  }
}

I don't know of an equivalent call for WPF. Therefore, you need to do something like this extension method.

static class ExtensionsForWPF
{
  public static System.Windows.Forms.Screen GetScreen(this Window window)
  {
    return System.Windows.Forms.Screen.FromHandle(new WindowInteropHelper(window).Handle);
  }
}
link|improve this answer
Perhaps my tagging didn’t make it clear that I am using WPF windows, not WinForms. I do not have the System.Windows.Forms.dll referenced, and it wouldn’t work anyway as WPF has its own inheritance tree. – chilltemp Oct 31 '08 at 17:25
Screen.FromHandle... did excactly what I needed. Thanks – chilltemp Oct 31 '08 at 18:06
You're welcome. My apologies for not getting straight to the answer - I had to investigate what was available in WPF before I updated my post. – Jeff Yates Nov 3 '08 at 18:37
This works to put a window on the right-hand edge: var bounds = this.GetScreen().WorkingArea; this.Left = bounds.Right - this.Width; But it requires references to System.Windows.Forms and System.Drawing, which is not ideal. – Anthony Apr 3 '09 at 8:42
1  
+1 Thanks for this! Yeah I've found it pretty impossible to get by without System.Windows.Forms in my WPF app--MS just didn't include enough of the same functionality in WPF. – chaiguy Jul 3 '10 at 1:16
show 1 more comment
feedback

You can use this:

System.Windows.SystemParameters.WorkArea

This is also usefull:

System.Windows.SystemParameters.PrimaryScreenWidth System.Windows.SystemParameters.PrimaryScreenHeight

link|improve this answer
2  
I'm confused... This seems only to return the primary screen dimensions. I want to know the dimensions of the screen the window is currently at... – VitalyB Jan 16 '11 at 11:50
1  
I'm confused as to how this answers the question asked. – Jeff Yates Mar 28 '11 at 13:32
this does not answer the question and even if you just want to get the size of the primary display the SystemParameters (in WPF) are incorrect. they return device independent units and not pixels. for a better implementation see this answer: stackoverflow.com/questions/254197/… – Patrick Klug Sep 29 '11 at 23:28
PrimaryScreenHeight/Width worked exactly as expected, and MSDN has the following on them: "Gets a value that indicates the screen height, in pixels, of the primary display monitor." WorkArea does not specifically say pixels, but the documentation and usage examples leads me to believe me that it is also in pixels. Do you have a link to something indicating the use of device independent units? – chilltemp Oct 3 '11 at 15:37
feedback

Also you may need:

to get the combined size of all monitors and not one in particular.

link|improve this answer
feedback

Add on to ffpf

Screen.FromControl(this).Bounds
link|improve this answer
Thanks, I added this into my example. – Jeff Yates Oct 31 '08 at 17:38
feedback

Your Answer

 
or
required, but never shown

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