Jump to content

[RESOLU] (win32) changer la couleur d'un static


Recommended Posts

Cette fois je mets mon post au bon endroit :transpi:

Donc ma méthode c'est sans static, plutot du TextOut() pendant le WM_PAINT :

// à déclarer en global dans ta WindowProc
HDC hDC; 
PAINTSTRUCT paintst;
HFONT hFont = CreateFont( 14,0,0,0,0,FALSE,FALSE,FALSE,0,
                 OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,DEFAULT_QUALITY, 
                 DEFAULT_PITCH|FF_DONTCARE, "Tahoma");

// là c'est dans WM_PAINT
hDC = BeginPaint(hWnd, &paintst);
SetBkColor(hDC, RGB(245,245,245));
SelectObject(hDC, hFont); 
TextOut(hDC, 430, 80, "Nbre villes:", 12);
EndPaint(hWnd, &paintst);

Pour plus de détails MSDN :boulet:

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...