FindWindow
是 Windows API 中的一個(gè)函數(shù),用于根據(jù)指定的條件查找窗口。在 C# 中,你可以使用 FindWindow
的靜態(tài)方法來調(diào)用它。以下是 FindWindow
支持的一些常見查找條件:
FindWindow(null, "Notepad")
來查找所有名為 “Notepad” 的窗口。FindWindow(null, "無標(biāo)題 - 記事本")
來查找所有沒有標(biāo)題的記事本窗口。FindWindow("notepad.exe", null)
來查找所有屬于 “notepad.exe” 進(jìn)程的窗口。FindWindow(null, "請輸入用戶名")
來查找所有包含文本 “請輸入用戶名” 的窗口。需要注意的是,FindWindow
只支持上述四種查找條件,如果你需要更復(fù)雜的查找邏輯,可能需要使用其他方法或庫。
此外,FindWindow
函數(shù)在找不到窗口時(shí)會返回 IntPtr.Zero
,你可以使用 IntPtr.Zero
來判斷是否找到了窗口。
下面是一個(gè)簡單的示例代碼,展示了如何使用 FindWindow
函數(shù)來查找窗口:
using System;
using System.Runtime.InteropServices;
class Program
{
[DllImport("user32.dll")]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
static void Main()
{
// 查找所有 Notepad 窗口
IntPtr hwnd = FindWindow(null, "Notepad");
if (hwnd != IntPtr.Zero)
{
Console.WriteLine("找到了 Notepad 窗口!");
}
else
{
Console.WriteLine("沒有找到 Notepad 窗口。");
}
}
}
在這個(gè)示例中,我們使用 FindWindow
函數(shù)來查找所有名為 “Notepad” 的窗口,并根據(jù)返回的 IntPtr
值來判斷是否找到了窗口。