在 120dpi 下调试 .NET WinForms 应用程序

发布于 2024-07-25 05:31:11 字数 164 浏览 4 评论 0原文

我目前使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧城空念 2024-08-01 05:31:11

您可以使用表单字体属性。 默认情况下,当 Font 属性更改时,WinForm 表单会自行缩放,如下所示:

protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);
    Font = new Font("Arial", 14);
}

不要忘记阅读 AutoScaleMode 属性以及一般情况MSDN 中的自动缩放

You can use Form Font property. By default WinForm form scale itself when Font property changed, something like that:

protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);
    Font = new Font("Arial", 14);
}

Don't forget to read about AutoScaleMode property and in general about autoscaling in MSDN.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文