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

winform 控件 point 位置计算

时间:2019-12-21 11:43:30      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:rom   native   sys   span   http   runtime   hand   href   time   

public Point PointToScreen(Point p)
{
    NativeMethods.POINT pt = new NativeMethods.POINT(p.X, p.Y);
    UnsafeNativeMethods.MapWindowPoints(new HandleRef(this, this.Handle), NativeMethods.NullHandleRef, pt, 1);
    return new Point(pt.x, pt.y);
}

winform 控件 point 位置计算

标签:rom   native   sys   span   http   runtime   hand   href   time   

原文地址:https://www.cnblogs.com/upshania/p/12076290.html

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