Get a list of all display resolutions
Recently I needed to get a list of all display resolutions. I couldn’t find any info about it so I struggled a bit. This post is a note to self if I ever need to do it again. Hopefully it can be of use for someone else.
private IEnumerable<IDisplayResolution> GetDisplayResolutions()
{ServiceLocationHelper helper = new ServiceLocationHelper(ServiceLocator.Current);
DisplayResolutionService resolutionservice = helper.Advanced.GetInstance<DisplayResolutionService>();return resolutionservice.Resolutions;
}
Comments