使用WIn32 SetParent()在非WPF应用程序内托管WPF应用程序

前端之家收集整理的这篇文章主要介绍了使用WIn32 SetParent()在非WPF应用程序内托管WPF应用程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 WPF应用程序,我想看起来它托管在另一个 – 非WPF – 应用程序.在现实生活中,这个非WPF应用程序是Internet Explorer中的ActiveX,但为了说明问题,我使用了一个简单的 Windows窗体应用程序.

我使用Windows API函数SetParent,已经有几十个线程.但是,我找不到任何关于我的确切问题的内容:WPF应用程序右侧和底部的一个小区域没有在非WPF应用程序窗口内绘制.

WPF窗口自行运行:

使用WinForm应用程序窗口作为父级的WPF窗口:

如果将WPF应用程序与WinForms应用程序或普通Win32应用程序(如记事本)交换,我不会遇到此问题.

WinForm代码如下所示:

  1. private void Form1_Load(object sender,EventArgs e)
  2. {
  3. // Start process
  4. var psi = new ProcessStartInfo("c:\\wpfapp\\wpfapp\\bin\\Debug\\wpfapp.exe");
  5. psi.WindowStyle = ProcessWindowStyle.Normal;
  6. _process = Process.Start(psi);
  7.  
  8. // Sleep until new process is ready
  9. Thread.Sleep(1000);
  10.  
  11. // Set new process's parent to this window
  12. SetParent(_process.MainWindowHandle,this.Handle);
  13.  
  14. // Remove WS_POPUP and add WS_CHILD window style to child window
  15. const int GWL_STYLE = -16;
  16. const long WS_POPUP = 0x80000000;
  17. const long WS_CHILD = 0x40000000;
  18. long style = GetWindowLong(_process.MainWindowHandle,GWL_STYLE);
  19. style = (style & ~(WS_POPUP)) | WS_CHILD;
  20. SetWindowLong(_process.MainWindowHandle,GWL_STYLE,style);
  21.  
  22. // Move and resize child window to fit into parent's
  23. MoveWindow(_process.MainWindowHandle,this.Width,this.Height,true);
  24. }

注意:我知道这个使用SetParent不一定是推荐的做法,但我想并且需要找到如何这样做,所以请让我:)

我找到了一个相当好的解决方法:在SetParent之前调用MoveWindow:
  1. private void Form1_Load(object sender,EventArgs e)
  2. {
  3. // Start process
  4. var psi = new ProcessStartInfo("C:\\WpfApp\\WpfApp.exe");
  5. psi.WindowStyle = ProcessWindowStyle.Normal;
  6. _process = Process.Start(psi);
  7.  
  8. // Sleep until new process is ready
  9. Thread.Sleep(3000);
  10.  
  11. // Move and resize child window to fit into parent's
  12. Rectangle rect;
  13. GetClientRect(this.Handle,out rect);
  14. MoveWindow(_process.MainWindowHandle,rect.Right - rect.Left,rect.Bottom - rect.Top,true);
  15.  
  16. // Set new process's parent to this window
  17. SetParent(_process.MainWindowHandle,this.Handle);
  18.  
  19. // Remove WS_POPUP and add WS_CHILD window style to child window
  20. long style = GetWindowLong(_process.MainWindowHandle,GWL_STYLE);
  21. style = (style & ~(WS_POPUP) & ~(WS_CAPTION)) & ~(WS_THICKFRAME) | WS_CHILD;
  22. SetWindowLong(_process.MainWindowHandle,style);
  23. }

在SizeChanged事件处理程序中,我将子项从父项中取出,调用MoveWindow并将其移回父项.为了减少闪烁,我在执行这些操作时隐藏了窗口:

  1. private void Form1_SizeChanged(object sender,EventArgs e)
  2. {
  3. ShowWindow(_process.MainWindowHandle,SW_HIDE);
  4.  
  5. var ptr = new IntPtr();
  6. SetParent(_process.MainWindowHandle,ptr);
  7.  
  8. Rectangle rect;
  9. GetClientRect(this.Handle,out rect);
  10.  
  11. MoveWindow(_process.MainWindowHandle,true);
  12. SetParent(_process.MainWindowHandle,this.Handle);
  13. ShowWindow(_process.MainWindowHandle,SW_SHOW);
  14. }

它没有解释为什么MoveWindow在SetParent之后不起作用,但它解决了我的问题,所以我将此标记为答案,除非出现更好的东西.

猜你在找的Windows相关文章