Winform中得到鼠標位置的 (是鼠標到屏幕左上角的位置):ide
pt = Cursor.Position;
得到控件距屏幕位置(是控件到屏幕左上角位置)this
PointToScreen(this.drawingPanel.Location
得到控件距離Form窗體位置:orm
this.drawingPanel.Location
這裏需注意鼠標的位置是到屏幕左上角距離,而不是到Form窗體的距離,這裏取部分代碼截圖
it
//滑動前鼠標距離Panel左上角位置距離 SizeF screenMouseToPanel = (Size)pt - (Size)PointToScreen(this.drawingPanel.Location); //滑動前鼠標距離panel左上角佔比 double mouseInPanelXPercent = screenMouseToPanel.Width / this.drawingPanel.Width; double mouseInPanelYPercent = screenMouseToPanel.Height / this.drawingPanel.Height;