在 Delphi 中显示资源管理器菜单
你好。在Delphi中,我们可以使用TShellListView来显示Windows资源管理器等组件中的文件。当我单击其中的图标时,它会显示一个与 Windows 资源管理器相同的弹出菜单。我可以在不使用 TShellListView 的情况下自动显示相同的菜单吗?
示例我将编写一个类似的函数;
ShowFileMenu( 'c:\file.txt' );
它将显示该文件的 Windows 资源管理器菜单。
谢谢。
Possible Duplicate:
How to pop-up the Windows context menu for a given file using Delphi?
Hello. In Delphi, we can use TShellListView to show files in a component like windows explorer. When i click on an icon in it, it shows a popup menu same as windows explorer. Can i show same menu automatically without using TShellListView?
Example i will write a function like;
ShowFileMenu( 'c:\file.txt' );
and it will show that file's windows explorer menu.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我以前回答过这样的问题。
请参阅:
如何使用 Delphi 弹出给定文件的 Windows 上下文菜单?
我希望它能帮助你。
I have answered question like this before.
see:
How to pop-up the Windows context menu for a given file using Delphi?
I hope it will help you.