WPFWinform调用WPF窗体注意事项
Posted 梦琪小生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPFWinform调用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。
以上是关于WPFWinform调用WPF窗体注意事项的主要内容,如果未能解决你的问题,请参考以下文章