码迷,mamicode.com
首页 > Windows程序 > 详细

Winform中控件,鼠标坐标位置计算

时间:2017-06-20 13:43:15      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:winform 控件   鼠标 位置   

Winform中获得鼠标位置的 (是鼠标到屏幕左上角的位置):

pt = Cursor.Position;

获得控件距屏幕位置(是控件到屏幕左上角位置)

PointToScreen(this.drawingPanel.Location

获得控件距离Form窗体位置:

this.drawingPanel.Location

这里需注意鼠标的位置是到屏幕左上角距离,而不是到Form窗体的距离,这里取部分代码截图

//滑动前鼠标距离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;


Winform中控件,鼠标坐标位置计算

标签:winform 控件   鼠标 位置   

原文地址:http://volvo9yue.blog.51cto.com/12265053/1940067

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!