我使用gmap.net控件在windows窗体上显示地图。现在一切正常,除了地图拖动功能。一般地图拖动支持左鼠标按钮,但在gmap中。右键单击支持网络控制拖动。
我的问题是: 有没有什么方法可以使用鼠标左键实现Map Dragging功能。
请帮助我。
先谢谢。
答案 0 :(得分:42)
我找到了答案,只是设置DragButton
控件的GMAP
属性
MainGMap.DragButton = MouseButton.Left;
答案 1 :(得分:1)
基于已接受的答案,我必须将MouseButton
更改为MouseButtons
才能起作用:
MainGMap.DragButton = MouseButtons.Left;