GDI+ 相对form窗口的坐标和相对于显示器的屏幕坐标的转换
时间:2010-11-22 来源:陈孝勇
this.Location; // 窗体所在坐标
this.PointToScreen(new Point(0, 0)); // 客户区坐标转换为屏幕坐标
this.PointToClient(new Point(0, 0)); // 屏幕坐标转换为客户区坐标
相关阅读 更多 +
时间:2010-11-22 来源:陈孝勇
this.Location; // 窗体所在坐标
this.PointToScreen(new Point(0, 0)); // 客户区坐标转换为屏幕坐标
this.PointToClient(new Point(0, 0)); // 屏幕坐标转换为客户区坐标