c#

c# findwindowex错误处理

小樊
81
2024-11-21 15:11:32
栏目: 编程语言

在C#中,FindWindowEx函数用于查找窗口句柄。为了处理可能的错误,你可以使用try-catch语句来捕获异常。以下是一个示例:

using System;
using System.Runtime.InteropServices;

class Program
{
    [DllImport("user32.dll")]
    static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);

    static void Main()
    {
        try
        {
            // 替换以下字符串为你要查找的窗口类名和窗口标题
            string className = "ClassName";
            string windowTitle = "WindowTitle";

            IntPtr hwnd = FindWindowEx(IntPtr.Zero, IntPtr.Zero, className, windowTitle);

            if (hwnd == IntPtr.Zero)
            {
                Console.WriteLine("未找到窗口");
            }
            else
            {
                Console.WriteLine($"找到窗口,句柄为: {hwnd}");
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine($"发生错误: {ex.Message}");
        }
    }
}

在这个示例中,我们使用try-catch语句来捕获FindWindowEx函数可能引发的异常。如果发生异常,我们将在控制台上显示错误消息。这样可以确保程序在遇到问题时不会崩溃,并且可以提供有关错误的详细信息。

0
看了该问题的人还看了