Perl TK 调整窗口大小

发布于 2024-11-03 02:48:13 字数 39 浏览 0 评论 0原文

是否可以自动将 Tk 窗口的大小调整为文本图中文本的宽度和高度?

Is it possible to automatically resize a Tk window to the width and height of the text inside of the text plot?

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

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

发布评论

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

评论(1

梦里寻她 2024-11-10 02:48:13

您可以轻松测量特定字体中某些文本的宽度:

$font = $widget->Font(....);              # Get the font however you want
$lineWidth = $font->measure($text);       # Do this for each line; take the max
$lineHeight = $font->metrics(-linespace); # Get the height of a line; x # lines

为边框等添加一点倾斜,并使用它来设置顶层的大小:

$toplevel->configure(-width=>$width, -height=>$height);

如果它不是您想要控制的顶层,这是最简单的通过将内容放入框架中并控制该框架的大小来实现此目的(相同的方法,相同的选项)。另请注意,如果行太多或太长,则无论如何它都无法适合屏幕。

You can easily measure how wide some text is in a particular font:

$font = $widget->Font(....);              # Get the font however you want
$lineWidth = $font->measure($text);       # Do this for each line; take the max
$lineHeight = $font->metrics(-linespace); # Get the height of a line; x # lines

Add in a bit of slop for borders, etc., and use this to set the size of the toplevel:

$toplevel->configure(-width=>$width, -height=>$height);

If it's not a toplevel that you want to control, it's easiest to do this by putting the contents in a frame and controlling the size of that frame (same method, same options). Also be aware that if you have too many rows or too long lines, it won't fit on the screen anyway.

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