我有一个使用 WS_BORDER 样式的 CreateWindowEx 创建的自定义控件。除了与对话框中的其他控件以不同颜色显示的边框外,一切正常。我控件的边框是黑色的,其他控件的边框是蓝色的。创建控件后,我尝试调用 EnableThemeDialogTexture(_dialogHandle, ETDT_ENABLE) 以及来自http://www.patchou.com/projects/richedit/的逻辑,但无济于事。我正在使用 C++ 和 Winapi。IE。没有 MFC,没有 .Net。非常感谢任何指导。
编辑:这是对我有用的逻辑:
HDC hdc = GetWindowDC(hwnd);
HTHEME themeHandle = OpenThemeData(hwnd, L"Edit");
if(themeHandle)
{
int cxBorder = GetSystemMetrics(SM_CXBORDER);
int cyBorder = GetSystemMetrics(SM_CYBORDER);
RECT rc;
GetClientRect(hwnd, &rc);
OffsetRect(&rc, cxBorder, cyBorder);
ExcludeClipRect(hdc, rc.left, rc.top, rc.right, rc.bottom);
InflateRect(&rc, cxBorder, cyBorder);
DrawThemeBackground(themeHandle, hdc, 0, 0, &rc, NULL);
CloseThemeData(themeHandle);
}
ReleaseDC(hwnd, hdc);