用鼠标按钮从另一个应用程序拖放不会触发事件
我正在尝试将文件拖放到应用程序中的控件上。问题是,当您按住鼠标按钮(即从寡妇资源管理器中拖动)时,我的应用程序不会触发任何表单事件。如果鼠标没有按下,它们都可以正常工作。我似乎需要为应用程序启用“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要为您想要放置的控件/对象启用
AllowDrop
。您还需要在
Enter
或DragOver
事件中更新DragDropEffects
。这使您可以验证受支持或不受支持的放置项目并提供反馈。AllowDrop
needs to be enable for the control/object you intend to drop on.You also need to update the
DragDropEffects
in either theEnter
orDragOver
event. This allows you to validate and provide feedback for supported or unsupported drop items.