下降到 AutoCAD,不同的行为
我正在努力解决从 Windows Shell 拖放 -> 之间的差异AutoCAD 并从我们的应用程序中拖放 -> AutoCAD。
如果有人将 dwg 文件从我们的应用程序拖放到 AutoCAD => AutoCAD 进行“打开”操作 如果将 dwg 文件从桌面(例如)拖放到 AutoCAD => AutoCAD 进行“插入”操作。
在这两种情况下,都可以正确检索 dwg 文件的路径,并且可以正确读取文件。 “插入”意味着将拖放的文件的内容附加到当前的 AutoCAD 图形中。 “打开”是指关闭当前的AutoCAD图形并打开拖放的文件。
我们确实使用 CF_HDROP(和 DROPFILES)格式实现了 IDropSource,例如,它可以从我们的应用程序拖放到桌面。
有人有提示吗?
谢谢。
I'm struggling with a difference between drag-and-drop from Windows Shell -> AutoCAD and drag-and-drop from our app -> AutoCAD.
If one drops a dwg file from our app to AutoCAD => AutoCAD makes an "open" operation
If one drops a dwg file from Desktop (for instance) to AutoCAD => AutoCAD makes an "insert" operation.
In both cases the path to the dwg file is correctly retrieved, the file is correctly read. "insert" means appending the content of the dropped file to the current AutoCAD drawing. "open" means closing the current AutoCAD drawing and opening the dropped file.
We did implement IDropSource using CF_HDROP (and DROPFILES) format, which works in a drag-and-drop from our application to Desktop, for instance.
Does anybody have a hint ?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 DoDragDrop 调用中,使用
dwOKEffect
参数的DROPEFFECT_LINK
标志而不是DROPEFFECT_COPY
标志。In the DoDragDrop call, use the
DROPEFFECT_LINK
flag instead of theDROPEFFECT_COPY
flag for thedwOKEffect
parameter.