mogwai93 Posted October 4, 2005 Share Posted October 4, 2005 j'aimerais modifier la couleur de fond d'un static (et que celle du static) je programme en c/c++, en win32 (pas de mfc) je cherche donc les parametres à mettre à la methode sendmessage merci Link to comment Share on other sites More sharing options...
astero-H Posted October 9, 2005 Share Posted October 9, 2005 Cette fois je mets mon post au bon endroit 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 Link to comment Share on other sites More sharing options...
mogwai93 Posted October 9, 2005 Author Share Posted October 9, 2005 ok merci, ca fonctionne Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.