2007-05-11から1日間の記事一覧

タイトルバー

c

void TitleBarSw(HWND hWnd) { int style = GetWindowLong(hWnd, GWL_STYLE); static BOOL f = ( style == (style | WS_CAPTION) ); if(f) { style = (style & ~WS_CAPTION); f =FALSE; } else { style = (style | WS_CAPTION); f =TRUE; } SetWindowLong( h…