美文网首页
wpf 中获取鼠标坐标位置的方法

wpf 中获取鼠标坐标位置的方法

作者: West_Winds_Gone | 来源:发表于2018-06-20 14:06 被阅读0次

    Point pointToWindow = Mouse.GetPosition(this);

    Point pointToScreen = PointToScreen(pointToWindow);

    this.Xtext.Text = pointToScreen.X.ToString();

    this.Ytext.Text = pointToScreen.Y.ToString();

    用到的是这个方法    Visual.PointToScreen Method (Point)

    参考:https://msdn.microsoft.com/en-us/library/system.windows.media.visual.pointtoscreen.aspx

    相关文章

      网友评论

          本文标题:wpf 中获取鼠标坐标位置的方法

          本文链接:https://www.haomeiwen.com/subject/bafxyftx.html