FXRuby FXFile对话框默认目录
在 FXRuby 中; 如何将 FXFileDialog
设置为打开时位于主目录?
In FXRuby; how do I set the FXFileDialog
to be at the home directory when it opens?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种非常懒惰的方法:
这依赖于您位于 *nix 盒子上(或设置了 $HOME 环境变量)。 具体回答您的问题的行是:
这里,第一个参数是拥有对话框的窗口,第二个参数是窗口的标题,第三个参数是开始的默认路径(您需要在否则,它将启动一个更高的目录,并选择用户的主文件夹)。 有关 FXFileDialog 的更多信息,请查看此链接。
Here's an exceedingly lazy way to do it:
This relies on you being on a *nix box (or having the $HOME environment variable set). The lines that specifically answer your question are:
Here, the first argument is the window that owns the dialog box, the second is the title of the window, and the third is the default path to start at (you need the "/" at the end otherwise it'll start a directory higher with the user's home folder selected). Check out this link for more info on FXFileDialog.