设置窗口客户区域的宽度和高度 @param hwnd 指定的窗口句柄 @param width 宽带 @param height 高度 @return 0: 失败 1:成功
(int hwnd,int width,int height)
| 389 | * @return 0: 失败 1:成功 |
| 390 | */ |
| 391 | public int SetClientSize(int hwnd,int width,int height){ |
| 392 | return Dispatch.call(dm,"SetClientSize",hwnd,width,height).getInt(); |
| 393 | } |
| 394 | |
| 395 | /** |
| 396 | * 设置窗口的大小 |