Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 gmap.net 控件在 Windows 窗体上显示地图。到目前为止,除了地图拖动功能之外,一切正常。一般来说,鼠标左键支持地图拖动,但在 gmap.net 控件中支持拖动用鼠标右键。
我的问题是:有什么方法可以使用鼠标左键实现地图拖动功能。
请帮我。
提前致谢。
我找到了答案,它只是设置控件的DragButton属性GMAP
DragButton
GMAP
MainGMap.DragButton = MouseButton.Left;
根据接受的答案,我必须更改MouseButton为MouseButtons才能正常工作:
MouseButton
MouseButtons
MainGMap.DragButton = MouseButtons.Left;