如何使用 Perl TK 将滚动条添加到主窗口

发布于 2024-08-27 18:12:38 字数 39 浏览 4 评论 0原文

我想在我的主窗口中添加滚动条。如何在主窗口中添加滚动条。请帮我。

I want to add scroll bar in my main window. How can I add scroll bar in my main window. Please help me.

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

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

发布评论

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

评论(2

孤者何惧 2024-09-03 18:12:39

您可以使用 Tk::Pane 或使用 Scrolled 构造函数 来创建滚动框架或其他小部件。

my $f = $mw->Scrolled( Frame => @frame_options );

You can use a Tk::Pane or you can use the Scrolled constructor to create a scrolled Frame or other widget.

my $f = $mw->Scrolled( Frame => @frame_options );
花落人断肠 2024-09-03 18:12:38

在 TK 中,您不会向主窗口添加滚动条,而是创建一个要滚动的小部件并添加滚动条来滚动它。
自己做这件事有点复杂,所以 TK 有一些助手可以让这件事变得更容易。

TK::Pane 可用于创建空滚动您可以向其中添加其他小部件的容器。

In TK you wouldn't add a scrollbar to the main window, but you create a widget to be scrolled and add scroll bars to scroll it.
This is a little complex to do your self so TK has some helpers to make it easier.

TK::Pane can be used to create an empty scrolled container that you can add other widgets to.

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