有没有办法在 Perl 5.004/Tk 400 中使用 gridRowconfigure
在你问“你为什么使用那个旧版本的 Perl?”之前,这不是我能控制的。 我必须使用我可以使用的工具来完成这个项目。 我的问题是,有谁知道这是否可能,如果可能的话,使用 gridRowconfigure 的语法如下:
$main_window->gridRowconfigure(1, -weight => 1, -minsize => 171, -pad => 0);
in,Perl 5.004,Tk 400。谢谢。
Before you ask, "Why are you using that old version of Perl?", it is out of my hands. I have to use the tools available to me for this project. My question is does anyone know if it is possible, and if so what the syntax looks like to use gridRowconfigure as follows:
$main_window->gridRowconfigure(1, -weight => 1, -minsize => 171, -pad => 0);
in, Perl 5.004, Tk 400. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您使用的是 Tk-400.202,因此“
perldoc Tk::grid
”应该告诉您需要了解的内容。 您可能需要阅读一些其他文档,但是:正如我在对该问题的评论中指出的那样 - 这是应该升级的古董软件。
Since you are using Tk-400.202, it appears that '
perldoc Tk::grid
' should tell you what you need to know. You will probably need to read some other documentation, but:As I noted in a comment to the question - this is antique software that should be upgraded.
如果这意味着 Tk 4.0,我想你不能。 网格是在 Tk 4.1 中添加的。
如果 Grid 存在,则 rowconfigure 应该存在,因为它从一开始就存在。 当您尝试上面写的内容时,您遇到什么问题/错误?
If that means Tk 4.0, I guess you can't. Grid was added in Tk 4.1.
If Grid is present, rowconfigure should be since it was there from the start. What problem/error do you get when you try what you wrote above?