FindWindow
函數(shù)在C#中用于查找指定類名或窗口名的窗口句柄。如果該函數(shù)找不到匹配的窗口,它將返回IntPtr.Zero
。因此,使用FindWindow
查找窗口時,是有可能失敗的。
以下是一個簡單的示例,展示了如何使用FindWindow
函數(shù)查找窗口:
using System;
using System.Runtime.InteropServices;
class Program
{
[DllImport("user32.dll", SetLastError = true)]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
static void Main()
{
// 示例:查找名為 "Notepad" 的窗口
IntPtr hwnd = FindWindow(null, "Notepad");
if (hwnd == IntPtr.Zero)
{
Console.WriteLine("未找到窗口");
}
else
{
Console.WriteLine($"找到窗口,句柄為: {hwnd}");
}
}
}
在這個示例中,我們嘗試查找名為 “Notepad” 的窗口。如果找到了窗口,我們將輸出窗口的句柄;否則,我們將輸出 “未找到窗口”。