如何在 Perl 中显示打开的文件夹选择对话框?

发布于 2024-08-13 18:27:18 字数 28 浏览 4 评论 0原文

如何在 Perl 中打开文件夹选择对话框?

How do I open folder selection dialog in Perl?

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

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

发布评论

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

评论(3

早茶月光 2024-08-20 18:27:18

取决于您使用的 GUI 系统,也许还取决于平台。例如,在 Windows 上并使用 Win32::GUI,您可以使用 GetOpenFileName

# $main is your main window...
$my_file = $main->GetOpenFileName(
    -title => 'Select a file...',
    -file => 'default.file',
);

Depends on the GUI system you're using, and perhaps the platform. For example, on Windows and using Win32::GUI, you can use GetOpenFileName:

# $main is your main window...
$my_file = $main->GetOpenFileName(
    -title => 'Select a file...',
    -file => 'default.file',
);
灵芸 2024-08-20 18:27:18

大多数便携(至少与相比)。 org/?dist=Wx" rel="noreferrer">不< a href="http://matrix.cpantesters.org/?dist=Win32::GUI" rel="noreferrer">rs):

use Tk;
my $dir = Tk::MainWindow->new->chooseDirectory;

当然,如果您实际上在其余的部分中使用 Tk程序中,您应该在正确的父窗口小部件上调用 chooseDirectory,而不是在此处构造和破坏的窗口小部件上。

Most portable (at least compared to others):

use Tk;
my $dir = Tk::MainWindow->new->chooseDirectory;

Of course, if you're actually using Tk in the rest of your program, you should call chooseDirectory on a proper parent widget instead of the one constructed and destructed here.

淡淡的优雅 2024-08-20 18:27:18

您可能想查看 wxPerl 中的 GUI 绑定。

You may want to check out the GUI bindings in wxPerl.

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