在 120dpi 下调试 .NET WinForms 应用程序
我目前使用 VMware 虚拟机 (Windows XP) 在 120dpi 下调试我的 .NET WinForms 应用程序。 很烦人。
有谁知道一种方法可以在 96dpi 工作环境下给我类似的结果? 即单个进程是否可以激活120dpi模式,或者Windows Forms中有开关吗?
I currently use a VMware virtual machine (Windows XP) to debug my .NET WinForms applications under 120dpi. Very annoying.
Does anybody know a way that gives me similar results under my 96dpi working environment? That is, can 120dpi mode be activated for a single process, or is there a switch in Windows Forms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用表单字体属性。 默认情况下,当 Font 属性更改时,WinForm 表单会自行缩放,如下所示:
不要忘记阅读 AutoScaleMode 属性以及一般情况MSDN 中的自动缩放。
You can use Form Font property. By default WinForm form scale itself when Font property changed, something like that:
Don't forget to read about AutoScaleMode property and in general about autoscaling in MSDN.