0
votes
How to determine the orientation of the screen in C# for mobile devices?
Just guessing but my first attempt would be:
var rect = System.Windows.Forms.Screen.PrimaryScreen.Bounds;
// or var rect = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea;
va …
