我在我的 Win32 应用程序中加载了一个 WPF 窗口:
case WM_INITDIALOG:
{
System::Windows::Interop::HwndSourceParameters p;
p.WindowStyle = WS_VISIBLE | WS_CHILD;
p.PositionX = 100;
p.PositionY = 100;
p.Width = 600;
p.Height = 600;
p.ParentWindow = System::IntPtr(hDlg);
Globals::source = gcnew System::Windows::Interop::HwndSource(p);
Globals::source->RootVisual = gcnew MyControl();
return TRUE;
}
现在我想通过在我的应用程序中接收 win32 消息来处理 WPF 窗口事件。我怎样才能做到这一点?