Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF version of VirtualScreen

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

like image 932
Jonathan Allen Avatar asked Sep 03 '25 02:09

Jonathan Allen


1 Answers

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.

like image 187
Joel B Fant Avatar answered Sep 05 '25 07:09

Joel B Fant