在 Silverlight 4 中选择我的计算机中的文件夹路径(如 OpenFileDialog 中但没有文件名)
我在 silverlight 中见过 OpenFileDialog 和 SaveFileDialog,但是,如果我需要选择计算机中的文件夹路径怎么办?
设想: 用户想要选择计算机中可用于其文件的路径。例如,有一个按钮(例如,选择保存工作的路径按钮),他将使用该按钮来浏览文件夹。当他完成选择后,路径应该返回到文本框或类似的。
I have seen OpenFileDialog and SaveFileDialog in silverlight but, what if I required to select path of folder in my computer?
Scenario:
The user want to select path in the Computer which he can use for his files. For example there is a button (e.g. Select path to save your work button) which he will use to browse folder. When he is done with selection the path should return to the textbox or similar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Silverlight 也不会让您了解有关选定文件的任何信息(只需将其作为文件流访问)。
让您知道文件的路径将被视为另一个安全漏洞,因此这是不允许的。对不起。
您可以使用的唯一文件夹位于独立存储中,因此您可能希望将所有用户文件放在那里。这样您可以提供文件和文件夹的树形显示(当然,您必须获取或编写该文件/文件夹选择代码)。
Silverlight does not let you know anything about a selected file either (just access it as a file stream).
Letting you know the file's path would be considered another security hole, so it is not allowed. Sorry.
The only folders you can use are in Isolated storage, so you may want to put all your user files there instead. That way you can provide a tree display of files and folders (you will have to obtain, or write, that file/folder selection code of course).