SWT Contro : toDisplay and toControl

Control的几个较重要的方法

1.control.toDisplay(x,y)


方法原型:
/**
Returns a point which is the result of converting the argument, which is specified in coordinates relative to
the receiver, to display relative coordinates
*/

public Point toDisplay (int x, int y) {
 checkWidget ();
 POINT pt = new POINT ();
 pt.x = x;  pt.y = y;
 OS.ClientToScreen (handle, pt);
 return new Point (pt.x, pt.y);
}

将x,y由Control的相对值转化为Display(屏幕)的绝对值。 这个方法在平时用得较多。

 

2.Control类:
control.toControl ( Point  point)
Returns a point which is the result of converting the argument, which is specified in display relative coordinates,
to coordinates relative to the receiver.
将 Point 由 Display 的绝对值转化为 Control 的相对值。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值