-3
一個WinForms窗口在XML文件:如何顯示在一個WPF網格或Viewbox控件
<Viewbox name="viewbox1"></Viewbox>
在C#代碼隱藏:
windowformClass window1 = new windowformClass(); // this is the WinForms object, not WPF
viewbox1.Child = window1;
當我指定窗口1至viewbox1它顯示了一個錯誤,不能將窗體窗體轉換爲System.Window.ElementUI
什麼是正確的方法來做到這一點?
您需要使用WindowsFormsHost這個任務 – 0x4f3759df
你可以給我任何例如對於此> –
你應該避免在'WPF'應用程序中使用'WindowsForms' - 如果需要使用'WindowsFormsHost'正如其他人所提到的。爲什麼不把'WinForm'重構成'WPF'? –