4

Is there a WPF version of System.Windows.Forms.SystemInformation.VirtualScreen?

Dave Clemmer
  • 3,741
  • 12
  • 49
  • 72
Jonathan Allen
  • 68,373
  • 70
  • 259
  • 447

1 Answers1

5

Yes, there is. System.Windows.SystemParameters (in the PresentationFramework assembly) has a number of static VirtualScreen properties: VirtualScreenHeight, VirtualScreenWidth, VirtualScreenLeft, and VirtualScreenTop. It also has properties of the same names with 'Key' appended that return ResourceKeys.

Found using Reflector.

Joel B Fant
  • 24,406
  • 4
  • 66
  • 67