C# 通过希伯来语中的句柄获取窗口的标题返回问号

本文关键字:窗口 标题 返回 获取 句柄 希伯来语 | 更新日期: 2023-09-27 18:33:42

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

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

如果标题有希伯来字符,则用问号替换它们。
我想问题与骗局或其他什么有关......我该如何解决?

C# 通过希伯来语中的句柄获取窗口的标题返回问号

您的问题包含一个小错误,可能不会经常发生。您假设标题的最大长度为 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();
}

使用这个:

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