WPF version of VirtualScreen

1.5k Views Asked by At

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

1

There are 1 best solutions below

0
On BEST ANSWER

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.