下降到 AutoCAD,不同的行为

发布于 2024-11-19 15:19:19 字数 410 浏览 2 评论 0原文

我正在努力解决从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必你懂 2024-11-26 15:19:19

DoDragDrop 调用中,使用dwOKEffect 参数的 DROPEFFECT_LINK 标志而不是 DROPEFFECT_COPY 标志。

In the DoDragDrop call, use the DROPEFFECT_LINK flag instead of the DROPEFFECT_COPY flag for the dwOKEffect parameter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文