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

WPF中获取鼠标相对于桌面位置

时间:2018-08-14 14:22:36      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:blog   pos   nbsp   targe   桌面   windows   dev   win   位置   

原文:WPF中获取鼠标相对于桌面位置

var transform = PresentationSource.FromVisual(this).CompositionTarget.TransformFromDevice;
var mouse = transform.Transform(GetMousePosition());

public System.Windows.Point GetMousePosition()
{
    System.Drawing.Point point = System.Windows.Forms.Control.MousePosition;
    return new System.Windows.Point(point.X, point.Y);
}

 

或者用PointToScreen

WPF中获取鼠标相对于桌面位置

标签:blog   pos   nbsp   targe   桌面   windows   dev   win   位置   

原文地址:https://www.cnblogs.com/lonelyxmas/p/9473626.html

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