AutoScaleMode.Inherit 不继承

发布于 2024-08-25 20:27:38 字数 239 浏览 6 评论 0原文

我有一个包含在选项卡页中的用户控件。窗体已设置 AutoScaleMode = AutoScaleMode.Font,并且 UserControl 已设置 AutoScaleMode.Inherit。

现在,当我放大表单的字体大小时,用户控件中的字体也会放大,但控件内容不会缩放。如果我在用户控件上显式设置 AutoScaleMode.Font,那么它可以正常工作。

AutoScaleMode.Inherit 不应该这样工作吗?

I have a user control contained in a tabpage. The Form has set AutoScaleMode = AutoScaleMode.Font and the UserControl has set AutoScaleMode.Inherit.

Now when I enlarge the font size of the form then the font is enlarged in the user control too, but the controls contents are not scaled. If I explicitly set AutoScaleMode.Font on the user control then it works properly.

Shouldn't AutoScaleMode.Inherit work that way?

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

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

发布评论

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

评论(1

且行且努力 2024-09-01 20:27:38

MSDN 给出了明确的警告:

在 .NET Framework 版本 1.0 和
1.1,使用更简单的机制支持自动缩放,该机制始终
依赖当前系统字体。
这个机制现在已经过时了,但是
仍然支持向后
兼容性。您可以获得
旧的缩放行为通过设置
包含的 AutoScale 属性
形式为真,这也将
隐式设置
ContainerControl.AutoScaleMode
属性为无。反之,设置
ContainerControl.AutoScaleMode
表单的属性将设置自动缩放
设置为 false,启用更新的缩放
.NET 引入的机制
框架版本2.0。

所以:第一个问题:您使用的是哪个框架版本?

第二个猜测:您的控件是在表单初始化后添加的吗?

MSDN has an explicit warning given:

In the .NET Framework versions 1.0 and
1.1, automatic scaling was supported using a simpler mechanism that always
relied on the current system font.
This mechanism is now obsolete but
still supported for backward
compatibility. You can obtain the
older scaling behavior by setting the
AutoScale property of the containing
Form to true, which will also
implicitly set the
ContainerControl.AutoScaleMode
property to None. Conversely, setting
the ContainerControl.AutoScaleMode
property of a form will set AutoScale
to false, enabling the newer scaling
mechanism introduced with the .NET
Framework version 2.0.

so: first question: which framework-version are you using ?

second guess: is your control added after the initializing of the form ?

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