さて今度こそいけるでしょう
ーーーーーSource Codeーーーーー
#include <windows.h>
#define WIN_NAME TEXT("winwin")
int WINAPI WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow )
{
HWND hWnd;
WNDCLASS winclass;
winclass.style = CS_HREDRAW | CS_VREDRAW;
winclass.lpfnWndProc = DefWindowProc;
winclass.cbClsExtra = 0;
winclass.cbWndExtra = 0;
winclass.hInstance = hInstance;
winclass.hIcon = NULL;
winclass.hCursor = NULL;
winclass.hbrBackground = (HBRUSH)color_BACKGROUND + 1;
winclass.lpszMenuName = NULL;
winclass.lpszClassName = WIN_NAME;
if ( !RegisterClass( &winclass ) ) {
MessageBox( NULL, TEXT("トゥルットゥルットゥル"), NULL, MB_OK );
return 0;
}
hWnd = CreateWindow( WIN_NAME, TEXT("testtest"),
WS_OVERLAPPEDWINDOW,
100, 100, 400, 300,
NULL, NULL, hInstance, NULL );
if( hWnd == NULL ) {
MessageBox( NULL, TEXT("トットットゥルットゥルットゥル"), NULL, MB_OK );
return 0;
}
ShowWindow( hWnd, SW_SHOW );
MessageBox( NULL, TEXT("めでたしめてたし"), NULL, MB_OK );
return 0;
}
ーーーーーーーーーーーーーーーーーーーーーーーーー
実行結果
表示できたー♪
だがまてなんか想像してたのとちゃうで~
クライアント領域の色が白を想像してたんですが
背景のブラシの色カテミッカ
つづく
[0回]
PR