C# Windows Form 设计界面与实际显示不同的问题
问题来自于不同的缩放比率,默认是100%,更高的分辨率可能被认为调成125%, 150%
这个可以用DPI表示
目前没有很好解决,
只有一些reference:
https://blog.csdn.net/qq_42697866/article/details/104522827
https://stackoverflow.com/questions/4075802/creating-a-dpi-aware-application
其中:
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); // for design in 96 DPI
还没有实验