如何使用C#获取当前活动窗口的标题?

如何使用C#获取当前活动窗口的标题?,第1张

如何使用C#获取当前活动窗口的标题?

在此处查看有关如何使用完整源代码执行此 *** 作的示例

http://www.csharphelp.com/2006/08/get-current-window-handle-and-caption-with-
windows-api-in-c/

[Dllimport("user32.dll")]static extern IntPtr GetForegroundWindow();[Dllimport("user32.dll")]static extern int GetWindowText(IntPtr hWnd, StringBuilder text, int count);private string GetActiveWindowTitle(){    const int nChars = 256;    StringBuilder Buff = new StringBuilder(nChars);    IntPtr handle = GetForegroundWindow();    if (GetWindowText(handle, Buff, nChars) > 0)    {        return Buff.ToString();    }    return null;}

*使用@Doug McClean注释进行 *编辑, 以获得更好的正确性



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5487532.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存