用鼠标按钮从另一个应用程序拖放不会触发事件

发布于 2024-09-06 07:19:35 字数 180 浏览 5 评论 0原文

我正在尝试将文件拖放到应用程序中的控件上。问题是,当您按住鼠标按钮(即从寡妇资源管理器中拖动)时,我的应用程序不会触发任何表单事件。如果鼠标没有按下,它们都可以正常工作。我似乎需要为应用程序启用“AllowDrop”(它在表单上启用)

我缺少什么?

我正在Windows 7环境中使用vb.net 2008进行开发

I am trying to drag and drop a file onto a control in my application. The problem is that when you hold the mouse button down (i.e. dragging from widows explorer), my app does not fire any of the form events. They all work fine if the mouse is not down. Is appears that I need to enable the 'AllowDrop' for the application (it is enabled on the form)

What am I missing?

I am developing in vb.net 2008 in windows 7 environment

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

初心未许 2024-09-13 07:19:35

需要为您想要放置的控件/对象启用AllowDrop

您还需要在 EnterDragOver 事件中更新 DragDropEffects。这使您可以验证受支持或不受支持的放置项目并提供反馈。

Private Sub UserControl11_DragEnter(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles UserControl11.DragEnter
    e.Effect = DragDropEffects.All    
End Sub

AllowDrop needs to be enable for the control/object you intend to drop on.

You also need to update the DragDropEffects in either the Enter or DragOver event. This allows you to validate and provide feedback for supported or unsupported drop items.

Private Sub UserControl11_DragEnter(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles UserControl11.DragEnter
    e.Effect = DragDropEffects.All    
End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文