gpt4 book ai didi

c# - 在 C# 中缩放窗口窗体

转载 作者:太空狗 更新时间:2023-10-29 22:21:15 25 4
gpt4 key购买 nike

有没有一种简单的方法可以在 C# 中设置窗口窗体的缩放级别?在 VBA 中,有一个窗体的缩放属性。

最佳答案

我遇到了同样的问题,我在 C# 中以这种方式解决了它。代码继续表单加载

float scaleX = ((float)Screen.PrimaryScreen.WorkingArea.Width / 1024);
float scaleY = ((float)Screen.PrimaryScreen.WorkingArea.Height / 768);
SizeF aSf = new SizeF(scaleX, scaleY);
this.Scale(aSf);

这种“或多或少”的尺度形式和所有 child 。在 800x600 中永远循环(?)您必须设置以下表单属性:

AutoscaleMode = Font
AutoSize = False

关于c# - 在 C# 中缩放窗口窗体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35537/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com