I'm still new to C# and WPF, as a learning exercise I'm building a simple wrapper in WPF on a unmanaged win32 C++ application. I currently have the unmanaged application hosted using HWNDHOST
in a WPF control and am receiving WM_INPUT
messages for mouse input but when it comes to keyboard input I'm only receiving WM_KEYUP/DOWN
messages for the keyboard but no WM_INPUT
messages.
The hosted application unfortunately makes exclusive use of RawInput
and so requires the WM_INPUT
messages for the keyboard input system to function.
The C# code for the hosting of the app is below:
class EngineHost : HwndHost
{
#region Win32
private const int SWP_NOZORDER = 0x0004;
private const int SWP_NOACTIVATE = 0x0010;
private const int GWL_STYLE = -16;
private const int WS_CAPTION = 0x00C00000;
private const int WS_THICKFRAME = 0x00040000;
private const int WS_CHILD = 0x40000000;
[DllImport("user32.dll")]
private static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
[DllImport("user32.dll", SetLastError = true)]
private static extern int GetWindowLong(IntPtr hWnd, int nIndex);
[DllImport("user32")]
private static extern IntPtr SetParent(IntPtr hWnd, IntPtr hWndParent);
#endregion
#region Members
private Process _process;
#endregion
#region Implementation
protected override HandleRef BuildWindowCore(HandleRef hwndParent)
{
ProcessStartInfo psi = new ProcessStartInfo("Kruger.exe");
psi.WindowStyle = ProcessWindowStyle.Minimized;
_process = Process.Start(psi);
_process.WaitForInputIdle();
// The main window handle may be unavailable for a while, just wait for it
while (_process.MainWindowHandle == IntPtr.Zero)
{
Thread.Yield();
}
IntPtr engineHandle = _process.MainWindowHandle;
int style = GetWindowLong(engineHandle, GWL_STYLE);
style = style & ~((int)WS_CAPTION) & ~((int)WS_THICKFRAME); // Removes Caption bar and the sizing border
style |= ((int)WS_CHILD); // Must be a child window to be hosted
SetWindowLong(engineHandle, GWL_STYLE, style);
SetParent(engineHandle, hwndParent.Handle);
return new HandleRef(this, engineHandle);
}
protected override void DestroyWindowCore(HandleRef hwnd)
{
if (_process != null)
{
_process.CloseMainWindow();
_process.WaitForExit(5000);
if (_process.HasExited == false)
{
_process.Kill();
}
_process.Close();
_process.Dispose();
_process = null;
}
}
#endregion
}
Can anyone tell me why the WM_INPUT
keyboard messages are not being generated for the hosted application and how/if I can correct that?