C#:用鼠标右键拖放

问题描述 投票:0回答:1

我想用鼠标右键而不是左键进行拖放。然而打电话

DragDrop.DoDragDrop()

从 MouseRightButtonDown 而不是 MouseLeftButtonDown 不能完成这项工作 - DragDrop.DoDragDrop 在按住鼠标左键的同时查找鼠标移动。知道如何使用鼠标右键实现拖放吗?感谢您的任何提示!

c# wpf drag-and-drop
1个回答
3
投票

您需要使用DragDrop.AddQueryContinueDragHandler()。

© www.soinside.com 2019 - 2024. All rights reserved.