如何使用 syslistview32 从桌面或 Windows 资源管理器获取突出显示的项目?
我如何使用 Delphi 和 syslistview32 从桌面或 Windows 资源管理器获取突出显示的项目?
How might I, using Delphi and syslistview32, get the highlighted item from the desktop or Windows Explorer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您的获取项目是什么意思,所以我在这里发布了如何获取焦点项目文本。这是更复杂的任务,因为列表视图消息无法填充进程之间的缓冲区,因此您需要通过在外部进程中分配的虚拟内存页面传递它。但对于任何直接对外国物品进行的操纵,原则都是相同的。我不熟悉进程内存分配;任何有用的编辑将不胜感激。
注意:下面的代码已经在32位Windows XP上测试
,调用方法如下;只需将句柄传递给它,您就会获得该项目的文本
I'm not sure what you mean with get item, so I posted here how to get the focused item text. It's more complicated task because list view messages can't fill the buffer between processes, so you need to pass it through the virtual memory pages allocated in the foreign process. But the principle would be the same for any kind of manipulation with foreign items directly. I'm not familiar with process memory allocation; any useful edit will be appreciated.
Note: the code below has been tested on 32 bit Windows XP
And here's how to call; just pass the handle to it and you'll get the item's text