我想在我的窗口中打开一个应用程序。我的代码在Windows窗体中工作正常,但在wpf中它不起作用。这是带描述的代码
private Process pDocked;
private IntPtr hWndOriginalParent;
private IntPtr hWndDocked;
[DllImport("user32.dll")]
static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
[DllImport("user32.dll", SetLastError = true)]
public static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
private void panel1_Resize(object sender, EventArgs e)
{
//Change the docked windows size to match its parent's size.
MoveWindow(hWndDocked, 0, 0, panel1.Width, panel1.Height, true);
}
private void dockIt(string utility)
{
if (hWndDocked != IntPtr.Zero) //don't do anything if there's already a window docked.
return;
//hWndParent = IntPtr.Zero;
pDocked = Process.Start(utility);
while (hWndDocked == IntPtr.Zero)
{
pDocked.WaitForInputIdle(1000); //wait for the window to be ready for input;
pDocked.Refresh(); //update process info
if (pDocked.HasExited)
{
return; //abort if the process finished before we got a handle.
}
hWndDocked = pDocked.MainWindowHandle; //cache the window handle
}
//Windows API call to change the parent of the target window.
//It returns the hWnd of the window's parent prior to this call.
hWndOriginalParent = SetParent(hWndDocked, panel1.Handle);
//Wire up the event to keep the window sized to match the control
panel1.SizeChanged += new EventHandler(panel1_Resize);
//Perform an initial call to set the size.
panel1_Resize(new Object(), new EventArgs());
}
在按钮上单击我在dockit中传递记事本但它不起作用, 我如何使它在wpf,任何面板(dockpanel,stackpanel)中工作,但它们不支持调整窗口大小
答案 0 :(得分:2)
您可以在WPF窗口中托管记事本,如下所示:将WindowsFormsHost添加到窗口,将System.Windows.Forms.Panel设置为其子级并使用面板的句柄。
public partial class MainWindow : Window
{
[DllImport("user32.dll")]
static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
[DllImport("user32.dll", SetLastError = true)]
public static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
private Process pDocked;
private IntPtr hWndOriginalParent;
private IntPtr hWndDocked;
public System.Windows.Forms.Panel pannel;
public MainWindow()
{
InitializeComponent();
pannel = new System.Windows.Forms.Panel();
host.Child = pannel;
dockIt("notepad.exe");
}
private void dockIt(string utility)
{
if (hWndDocked != IntPtr.Zero) //don't do anything if there's already a window docked.
return;
pDocked = Process.Start(utility);
while (hWndDocked == IntPtr.Zero)
{
pDocked.WaitForInputIdle(1000); //wait for the window to be ready for input;
pDocked.Refresh(); //update process info
if (pDocked.HasExited)
{
return; //abort if the process finished before we got a handle.
}
hWndDocked = pDocked.MainWindowHandle; //cache the window handle
}
//Windows API call to change the parent of the target window.
//It returns the hWnd of the window's parent prior to this call.
hWndOriginalParent = SetParent(hWndDocked, pannel.Handle);
//Wire up the event to keep the window sized to match the control
SizeChanged += window_SizeChanged;
//Perform an initial call to set the size.
AlignToPannel();
}
private void AlignToPannel()
{
MoveWindow(hWndDocked, 0, 0, pannel.Width, pannel.Height, true);
}
void window_SizeChanged(object sender, SizeChangedEventArgs e)
{
AlignToPannel();
}
}
窗口xaml:
<TabControl>
<TabItem Header="Notepad">
<WindowsFormsHost x:Name="host" />
</TabItem>
</TabControl>
但是一旦你将WindowsFormsHost放在一个标签页中,就会出现大量的WinForms / WPF集成问题。 我在本文"Mitigating Airspace Issues In WPF Applications"中找到了关于此主题的最佳知识来源。祝你好运。