首页 > 代码库 > 【WPF】Winform调用WPF窗体注意事项

【WPF】Winform调用WPF窗体注意事项

 1、需要添加一些引用

技术分享

2、调用处使用如下方法进行调用

Window win= new Window();   ElementHost.EnableModelessKeyboardInterop(win);WindowInteropHelper winHelper = new WindowInteropHelper(win);winHelper.Owner = this.Handle;win.Show();

 没有ElementHost.EnableModelessKeyboardInterop(wpfwindow)WPF快捷键无效。

WindowInteropHelper类作用是为WPF设置owner。

 

【WPF】Winform调用WPF窗体注意事项