检索窗口句柄 (HWND)

本主题介绍如何在桌面应用中检索窗口的窗口句柄。 范围涵盖 WinUI 3Windows Presentation Foundation (WPF)Windows Forms (WinForms)应用;代码示例以 C# 和 C++/WinRT 形式提供。

上述开发和 UI 框架(在幕后)都是基于 Win32 API 构建的。 在 Win32 中,窗口对象由一个称为窗口句柄的值来标识。 而窗口句柄的类型是 HWND(尽管它以 C# 形式显示为 IntPtr)。 在任何情况下,都会听到 HWND 这个术语,它是窗口句柄的简称。

在 WinUI 3、WPF 或 WinForms 桌面应用中检索窗口的 HWND 有多种原因。 其中一个例子是使用 HWND 与依赖 CoreWindow 显示用户界面 (UI) 的某些 Windows Runtime (WinRT) 对象进行互操作。 有关详细信息 ,请参阅显示依赖于 CoreWindow 的 WinRT UI 对象

使用 C# 的 WinUI 3

下面的 C# 代码显示了如何检索 WinUI 3 Window 对象的窗口句柄 (HWND)。 此示例调用 WinRT.Interop.WindowNative C# 互操作类上的 GetWindowHandle 方法。 有关 C# 互操作类的详细信息,请参阅从 .NET 应用调用互操作 API

// MainWindow.xaml.cs
private async void myButton_Click(object sender, RoutedEventArgs e)
{
    // Retrieve the window handle (HWND) of the current WinUI 3 window.
    var hWnd = WinRT.Interop.WindowNative.GetWindowHandle(this);
}

使用 C++ 的 WinUI 3

下面的 C++/WinRT 代码显示了如何检索 WinUI 3 Window 对象的窗口句柄 (HWND)。 此示例调用 IWindowNative::get_WindowHandle 方法。

// pch.h
...
#include <microsoft.ui.xaml.window.h>

// MainWindow.xaml.cpp
void MainWindow::myButton_Click(IInspectable const&, RoutedEventArgs const&)
{
    // Retrieve the window handle (HWND) of the current WinUI 3 window.
    auto windowNative{ this->m_inner.as<::IWindowNative>() };
    HWND hWnd{ 0 };
    windowNative->get_WindowHandle(&hWnd);
}

使用 C# 的 WPF

下面的 C# 代码显示了如何检索 WPF 窗口对象的窗口句柄 (HWND)。 此示例使用 WindowInteropHelper 类。

// MainWindow.xaml.cs
private void Button_Click(object sender, RoutedEventArgs e)
{
    var wih = new System.Windows.Interop.WindowInteropHelper(this);
    var hWnd = wih.Handle;
}

使用 C# 的 WinForms

下面的 C# 代码显示了如何检索 WinForms 窗体对象的窗口句柄 (HWND)。 此示例使用 NativeWindow.Handle 属性。

// Form1.cs
private void button1_Click(object sender, EventArgs e)
{
    var hWnd = this.Handle;
}