如何取消非GUI窗口的标题栏?
要去掉Windows的程序的标题栏(title bar),WinSetTitle好像只能改标题,WinSetState里也没有,找了半天,有没有其它办法呢?谢谢!!!#include <WinAPI.au3>
#include <Constants.au3>
#include <WindowsConstants.au3>
$hWnd = WinGetHandle("test")
$iStyle = BitAnd(_WinAPI_GetWindowLong($hWnd, $GWL_STYLE), BitNot($WS_CAPTION))
_WinAPI_SetWindowLong($hWnd, $GWL_STYLE, $iStyle) 学习一下,学习一下
页:
[1]