TShellTreeView - 如何过滤文件?
我在我的应用程序中使用 TShellTreeView,我希望它只显示我指定的文件。例如,我如何才能在 TShellTreeView 中只显示以下文件:
- 文本文件 (*.txt)
- 丰富的编辑文件 (*.rtf)
- Word 文档 (*.doc)
I am using the TShellTreeView in my Application, I want it to display only files I specify. For example how could I only show the following files in the TShellTreeView:
- Text Files (*.txt)
- Rich Edit Files (*.rtf)
- Word Documents (*.doc)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 About.com,顺便说一下,这是第一个要在 Google 搜索,您可以使用
OnAddFolder
事件并将CanAdd
布尔变量设置为true
或false
。与事件的名称相反,文件和文件夹都会调用此事件。According to About.com, which, by the way, is the first item to be shown in a Google search, you can use the
OnAddFolder
event and set theCanAdd
boolean variable totrue
orfalse
. Contrary to the name of the event, this is called for both files and folders.