Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
WindowInteropHelper Class

Updated: November 2007

Assists interoperation between Windows Presentation Foundation (WPF) and Win32 code.

Namespace:  System.Windows.Interop
Assembly:  PresentationFramework (in PresentationFramework.dll)

Visual Basic (Declaration)
Public NotInheritable Class WindowInteropHelper
Visual Basic (Usage)
Dim instance As WindowInteropHelper
C#
public sealed class WindowInteropHelper
Visual C++
public ref class WindowInteropHelper sealed
J#
public final class WindowInteropHelper
JScript
public final class WindowInteropHelper
XAML
You cannot directly create an instance of this class in XAML.

Members of this class allows the caller to have internal access to the Win32 HWND and the parent HWND of a WPF Window.  The proper security checks are performed by those members.

Use this class whenever you need a more specific object based on its HWND.

An example scenario is if you need to host a WPF dialog box in a Win32 application. Initialize the WindowInteropHelper  with a WPF window object for the dialog. You can then get the WPF window's handle (HWND) from the Handle property and specify the owner for the WPF window with the Owner property. The following code example shows how to use WindowInteropHelper when hosting a WPF dialog box in a Win32 application.

C#
WindowInteropHelper wih = new WindowInteropHelper(myDialog);
wih.Owner = ownerHwnd;
myDialog.ShowDialog();

Another scenario supported by this class is to obtain a HwndSource object from a WPF Window object. The HwndSource enables direct processing of Win32 messages through the AddHook method. By using HwndSource and AddHook in place of a Window you can still handle messages that have no equivalent or handling in WPF. Create a WindowInteropHelper  with the Window source , then call Handle on the WindowInteropHelper to get from HWND to HwndSource.

System..::.Object
  System.Windows.Interop..::.WindowInteropHelper
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Windows Vista

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker