C# Class SuperMap.Connector.Control.Forms.PanAction

拖动操作。
Inheritance: MapAction
Show file Open project: SuperMap/iClient-for-DotNet

Public Methods

Method Description
OnLoad ( MapControl mapControl ) : void

加载对应的地图控件。

Protected Methods

Method Description
MouseDoubleClick ( MouseEventArgs e ) : void

每当鼠标双击后,都将调用此方法。继承自MapAction。

MouseDown ( MouseEventArgs e ) : void

每当鼠标键按下后,都将调用此方法。继承自MapAction。

MouseMove ( MouseEventArgs e ) : void

每当鼠标移动后,都将调用此方法。继承自MapAction。

MouseUp ( MouseEventArgs e ) : void

每当鼠标键放开后,都将调用此方法。继承自MapAction。

Method Details

MouseDoubleClick() protected method

每当鼠标双击后,都将调用此方法。继承自MapAction。
protected MouseDoubleClick ( MouseEventArgs e ) : void
e System.Windows.Forms.MouseEventArgs
return void

MouseDown() protected method

每当鼠标键按下后,都将调用此方法。继承自MapAction。
protected MouseDown ( MouseEventArgs e ) : void
e System.Windows.Forms.MouseEventArgs 包含事件数据的MouseEventArgs
return void

MouseMove() protected method

每当鼠标移动后,都将调用此方法。继承自MapAction。
protected MouseMove ( MouseEventArgs e ) : void
e System.Windows.Forms.MouseEventArgs 包含事件数据的MouseEventArgs。
return void

MouseUp() protected method

每当鼠标键放开后,都将调用此方法。继承自MapAction。
protected MouseUp ( MouseEventArgs e ) : void
e System.Windows.Forms.MouseEventArgs 包含事件数据的MouseEventArgs
return void

OnLoad() public method

加载对应的地图控件。
public OnLoad ( MapControl mapControl ) : void
mapControl MapControl 需要加载的地图控件。
return void