I am using two Screens with a FHD resolution. The smaller one is set to 125%. When I try to get the screen resolution of both screens are width or height to small.
var allScreens = new Rectangle();
allScreens = Screen.AllScreens.Aggregate(allScreens,
(current, screen) => Rectangle.Union(current, screen.Bounds));
Actually 3840*1080 should be returned. However, I get 3456*1080 as the size of both screens. I already tried to get the DPI but without success.