Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够在我的程序内的文件列表上显示 SendTo 菜单,然后在所选文件上执行 SendTo 快捷方式或 droptarget。看来我可以 ShellExecute 一个 .lnk 文件,但我需要知道如何模拟将指定文件拖放到 droptarget 上,例如“Mail Recipient”
使用“发送到”菜单项只不过是使用所选文件作为附加参数调用 lnk。
所以你只需要 shellexecute .lnk 并给你的目标
ShellExecute( 0, "open", lnkPath, targetfilePath, NULL, SW_SHOW );