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