iSpyApplication.MainForm.FloorPlanMouseUp C# (CSharp) Method

FloorPlanMouseUp() private method

private FloorPlanMouseUp ( object sender, MouseEventArgs e ) : void
sender object
e MouseEventArgs
return void
        private void FloorPlanMouseUp(object sender, MouseEventArgs e)
        {
            if (Resizing) return;
            var fpc = (FloorPlanControl)sender;
            if (e.Button == MouseButtons.Left)
            {
                fpc.Fpobject.x = fpc.Left;
                fpc.Fpobject.y = fpc.Top;
            }
        }
MainForm