How would one go about getting the bounds for each physical display from a UWP application? I used to be able to do this:
System.Windows.Forms.Screen.AllScreens;
I've seen examples using
DisplayInformation.GetForCurrentView();
But that only gets the size of the screen the application is currently running on. I have a vertical screen application that I'm building and I would like it to always start on my vertical monitor instead of my primary horizontal monitor. I understand UWP apps should be resolution agnostic, but this isn't the case here. This is an application designed to work on a very particular display.
Please, this is UWP question only. This Question was written 6 years before UWP was even a thing. This is not a duplicate.