6

我正在使用这个:通过句柄获取窗口的标题:

[DllImport("user32.dll")] private static extern int GetWindowText(int hWnd, StringBuilder title, int size);

StringBuilder title = new StringBuilder(256);
GetWindowText(hWnd, title, 256);

如果标题有希伯来字符,它将用问号替换它们。
我猜这个问题与经济或其他东西有关......我该如何解决它?

4

2 回答 2

10

您的问题包含一个小错误,可能不会经常发生。您假设标题的最大长度为 256 个字符,这对于大多数情况来说可能已经足够了。但正如这篇文章所示,长度可能是 100K 个字符,甚至更多。所以我会使用另一个辅助函数:GetWindowTextLength

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);

[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
static extern int GetWindowTextLength(IntPtr hWnd);

public static string GetWindowTitle(IntPtr hWnd)
{
    var length = GetWindowTextLength(hWnd) + 1;
    var title = new StringBuilder(length);
    GetWindowText(hWnd, title, length);
    return title.ToString();
}
于 2019-09-06T09:59:02.303 回答
7

用这个:

[DllImport("user32.dll", CharSet = CharSet.Auto)]
static extern int GetWindowText(int hWnd, StringBuilder title, int size);
于 2013-10-02T19:00:37.277 回答