I'm not sure, but maybe you can just get the Dpi settings and check if they are 96 or not:
using(Graphics g = this.CreateGraphics()) { MessageBox.Show(g.DpiX.ToString() + Environment.NewLine + g.DpiY.ToString()); }
You may need to call SetProcessDPIAware first.
source share