Разрешение экрана моего ноутбука составляет 1920 * 1080. Но следующие вызовы дают другое разрешение - 1280 * 720. Как получить правильное разрешение экрана? Я использую Windows 10
int height = Screen.PrimaryScreen.Bounds.Height;
int width = Screen.PrimaryScreen.Bounds.Width;
width = SystemInformation.VirtualScreen.Width;
height = SystemInformation.VirtualScreen.Height;