SuperMap.Connector.Control.Forms.PanAction.MouseDown C# (CSharp) Method

MouseDown() protected method

每当鼠标键按下后,都将调用此方法。继承自MapAction。
protected MouseDown ( MouseEventArgs e ) : void
e System.Windows.Forms.MouseEventArgs 包含事件数据的MouseEventArgs
return void
        protected override void MouseDown(MouseEventArgs e)
        {
            _isDown = true;
            _oldPoint = e.Location;
            Map.Cursor = Cursors.Hand;
        }