如何在 Perl 中显示打开的文件夹选择对话框?
如何在 Perl 中打开文件夹选择对话框?
How do I open folder selection dialog in Perl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 Perl 中打开文件夹选择对话框?
How do I open folder selection dialog in Perl?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
取决于您使用的 GUI 系统,也许还取决于平台。例如,在 Windows 上并使用
Win32::GUI
,您可以使用GetOpenFileName
:Depends on the GUI system you're using, and perhaps the platform. For example, on Windows and using
Win32::GUI
, you can useGetOpenFileName
:大多数便携(至少与相比)。 org/?dist=Wx" rel="noreferrer">不他< a href="http://matrix.cpantesters.org/?dist=Win32::GUI" rel="noreferrer">rs):
当然,如果您实际上在其余的部分中使用 Tk程序中,您应该在正确的父窗口小部件上调用
chooseDirectory
,而不是在此处构造和破坏的窗口小部件上。Most portable (at least compared to others):
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.您可能想查看 wxPerl 中的 GUI 绑定。
You may want to check out the GUI bindings in wxPerl.