Is there a way to get the device resolution of a Windows 10 Device? I mean, the resolution given by the hardware (like 1920x1200 or 1366x768), not the current window resolution.
Asked
Active
Viewed 78 times
2
-
`ApplicationView.GetForCurrentView().VisibleBounds` only gives the resolution of the resizeable app window. I searched a way, to find the "real" resolution of the display. – Matt126 Aug 22 '15 at 00:03
-
Check the accepted answer in the link. Yes it does. – Justin XL Aug 22 '15 at 00:05
-
I've adopted the unchanged three lines of code to my app. It gives only the resolution of the current window. – Matt126 Aug 22 '15 at 00:10
-
Did you call it right after `Window.Current.Activate();`? – Justin XL Aug 22 '15 at 00:12
-
1Ohh, sorry. You are right, I've overlooked this. Now it works perfect – Matt126 Aug 22 '15 at 00:16