中文操作系统(96 dpi)上的表单缩放问题

发布于 2024-08-20 08:57:10 字数 165 浏览 7 评论 0原文

我有一个示例 .NET 应用程序,其中包含 2 个表单。我在这些表单上使用了图像和各种控件。当我在XP或Win 7英文版下运行这个应用程序时,它工作正常。但是,当我在中文版操作系统下运行此应用程序时,表单大小会发生变化。它增加了形状尺寸,导致形状扭曲。

有人知道这个问题吗?可以采取什么措施来解决它?

I have a sample .NET application which consists of 2 forms. I have used images and various controls over these forms. When I run this application under XP or Win 7 English version, it works fine. But, when I run this application under Chinese version OS, the form size changes. It increases the form size, causing distorted forms.

Is anybody aware of this issue? What can be done to resolve it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

情场扛把子 2024-08-27 08:57:10

我尝试过各种选择。为了解决这个问题我们需要设置Forms

自动缩放模式

属性设置为 none。这解决了 96 dpi 设置的问题。

I have tried various options. To resolve this problem we need to set Forms

AutoScaleMode

property to none. This resolves the problem for 96 dpi settings.

慈悲佛祖 2024-08-27 08:57:10

为 Windows 窗体设置以下属性:

  1. AutoScaleMode = None、
  2. AutoSize = True。

这样就可以了。祝你好运

Set the following properties for the Windows Form:

  1. AutoScaleMode = None,
  2. AutoSize = True.

This will do it. Good Luck

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