FireMonkey 中是否有用于显示文件系统/文件树的组件?
在 FireMonkey 框架中找不到任何文件树组件(当然是跨平台的)。任何人都知道或知道这样的组件吗?对我来说听起来像是一个基本的事情。
我正在寻找一个简单的“类似资源管理器”的树视图,如果它真的很漂亮,那并不重要,因为我可以重新设计它或继承和更改它。想法?...
Couldn't find any file-tree component (cross-platform, of course) in the FireMonkey framework. Anyone has any idea or knows such a component? Sounds like a basic thing to me.
I'm looking for a simple "explorer-like" tree view, not really important if it's really pretty as I can probably restyle it or inherit and change. Ideas?...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有没有组件(开箱即用),但您可以使用适用于所有平台的单元System.IOUtils快速实现它。
例如,给您一个想法:
这只是一个概念证明,因为它可以在两个平台上运行......当然,还有一些工作要做......
我已经使用 System.SysUtils.TOSVersion 向您展示了另一条记录,它可能也很有用......
There's no component (out of the box) but you can quickly implement it using the unit System.IOUtils which is working on all platforms.
For instance, to give you an idea:
This is just a proof of concept, as it works on both platform.. of course, there's still some work to do...
I have used System.SysUtils.TOSVersion to show you another record which can maybe be also useful...