如何确定对话框中使用的字体 window

How to determine font used in dialog window

如何在Windows上的运行过程中确定某些对话框window中某些控件使用的字体?像 Microsoft Spy++ 那样的东西。

我没有在 Spy++ 中找到此功能,但这是我刚刚为此任务编写的一个小程序:

#include <windows.h>
#include <stdio.h>

int main(int argc, char **argv)
{
    if (argc != 2) {
        fprintf(stderr, "Usage: findfont WINDOWTITLE\n");
        return 1;
    }
    LPCSTR title = argv[1];
    HWND hWnd = FindWindow(NULL, title);
    if (hWnd == NULL) {
        fprintf(stderr, "Window titled \"%s\" not found\n", title);
        return 1;
    }
    HFONT hFont = (HFONT) SendMessage(hWnd, WM_GETFONT, 0, 0);
    if (hFont == NULL) {
        fprintf(stderr, "WM_GETFONT failed\n");
        return 1;
    }
    LOGFONT lf = { 0 };
    if (!GetObject(hFont, sizeof(LOGFONT), &lf)) {
        fprintf(stderr, "GetObject failed\n");
        return 1;
    }
    printf("Face name: %s Height: %ld\n", lf.lfFaceName, lf.lfHeight);
    return 0;
}