Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Perl/Tk 在 Perl 中尝试 GUI。我找不到使用任何小部件从用户那里获取多行文本输入的方法。对于单行“条目”可以使用,但我找不到多行输入。有什么办法吗?
多行输入是通过text小部件完成的,如下所示:
text
# Text widget 20 characters wide and 10 lines tall $mw->Text(-width => 20, -height => 10)->pack;
如果您是 Perk/Tk 的新手,我强烈建议您widget从命令行运行。这是 Tk 小部件及其选项的交互式演示(带有代码说明)。
widget