gmap使用鼠标左键拖动

时间:2013-10-26 16:09:42

标签: c# winforms gmap.net

我使用gmap.net控件在windows窗体上显示地图。现在一切正常,除了地图拖动功能。一般地图拖动支持左鼠标按钮,但在gmap中。右键单击支持网络控制拖动。

我的问题是: 有没有什么方法可以使用鼠标左键实现Map Dragging功能。

请帮助我。

先谢谢。

2 个答案:

答案 0 :(得分:42)

我找到了答案,只是设置DragButton控件的GMAP属性

MainGMap.DragButton = MouseButton.Left;

答案 1 :(得分:1)

基于已接受的答案,我必须将MouseButton更改为MouseButtons才能起作用:

MainGMap.DragButton = MouseButtons.Left;