ElementHost.EnableModelessKeyboardInterop(Window) Method

Definition

Enables a Window to receive keyboard messages correctly when it is opened modelessly from Windows Forms.

public:
 static void EnableModelessKeyboardInterop(System::Windows::Window ^ window);
public static void EnableModelessKeyboardInterop (System.Windows.Window window);
static member EnableModelessKeyboardInterop : System.Windows.Window -> unit
Public Shared Sub EnableModelessKeyboardInterop (window As Window)

Parameters

window
Window

The Windows Presentation Foundation (WPF) window to be opened modelessly.

Remarks

Call the EnableModelessKeyboardInterop method to forward all keyboard messages when a WPF window is opened modelessly. The EnableModelessKeyboardInterop method installs a message filter in the Windows Forms-based application. The filter forwards all keyboard messages when the modeless window is active.

Applies to

See also