#include "stdafx.h"
#define IDC_FILTER_STATIC 1001
HINSTANCE g_hInstance;
LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,LPARAM lParam);
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
// TODO: Place code here.
g_hInstance = hInstance;
TCHAR className[] = TEXT("my class");
WNDCLASS wndclass = {
0};
wndclass.hInstance = hInstance;
wndclass.hbrBackground = (HBRUSH)COLOR_BACKGROUND;
wndclass.lpszClassName = className;
wndclass.lpfnWndProc = W
Win32设置修改STATIC控件字体、颜色
最新推荐文章于 2025-01-05 12:35:02 发布