如何在Winform应用程序中显示WPF窗口?我可以只使用Windows 1 win = new Windows1();吗? win.show()?

最佳答案

This article详细解释以下答案。

using System;
using System.Windows.Forms;
using System.Windows.Forms.Integration;

var wpfwindow = new WPFWindow.Window1();
ElementHost.EnableModelessKeyboardInterop(wpfwindow);
wpfwindow.Show();

关于c# - 如何在Winform应用程序中显示WPF窗口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5124778/

10-11 04:09