移动指定窗口到指定位置 @param hwnd 指定的窗口句柄 @param x X坐标 @param y y坐标 @return 0: 失败 1:成功
(int hwnd,int x,int y)
| 323 | * @return 0: 失败 1:成功 |
| 324 | */ |
| 325 | public int MoveWindow(int hwnd,int x,int y){ |
| 326 | return Dispatch.call(dm,"MoveWindow",hwnd,x,y).getInt(); |
| 327 | } |
| 328 | |
| 329 | /** |
| 330 | * 把屏幕坐标转换为窗口坐标 |
no test coverage detected