我在 Windows 8 中开发 WPF,并成功使用 pinvoke user32.dll 将 win32 窗口托管到 WPF。但是当我使用 Windows 7 构建时,非 WPF 应用程序没有托管到 WPF 中的表单面板中。它打开另一个窗口,例如启动该应用程序。
这是我的代码:
private System.Windows.Forms.Panel _panel;
private Process _process;
public MainWindow()
{
_panel = new System.Windows.Forms.Panel();
windowsFormsHost.Child = _panel;
}
private void WindowLoaded(object sender, RoutedEventArgs e)
{
ProcessStartInfo psi = new ProcessStartInfo(@"D:\unitypcbuild\UnityBuild.exe");
psi.WindowStyle = ProcessWindowStyle.Minimized;
_process = Process.Start(psi);
_process.WaitForInputIdle();
SetParent(_process.MainWindowHandle, _panel.Handle);
// resize embedded application & refresh
ResizeEmbeddedApp();
this.Activate();
}
private void ResizeEmbeddedApp()
{
if (_process == null)
return;
SetWindowPos(_process.MainWindowHandle, IntPtr.Zero, 0, 0, (int)_panel.ClientSize.Width, (int)_panel.ClientSize.Height, SWP_NOZORDER | SWP_NOACTIVATE);
int style = GetWindowLong(_process.MainWindowHandle, GWL_STYLE);
style = style & ~((int)WS_CAPTION) & ~((int)WS_THICKFRAME); // Removes Caption bar and the sizing border
SetWindowLong(_process.MainWindowHandle, GWL_STYLE, style);
}
是否有一些不同的方法可以使用 user32.dll 使用 WindowFormHost 将 win32 窗口托管到 WPF?