我需要将我的窗口显示为另一个窗口的选项卡内,我使用以下方法进行操作
var childWindowEditor = new MainWindow(); //window to embed
object content = childWindowEditor.Content; //take out the content of the window to embed
childWindowEditor.Content = null;
EditorTab.Content = content; //just a tab in a tabbed group
它工作正常,但问题是如果我想访问窗口类的功能怎么办?
我知道我应该将它创建为用户控件,但是有没有解决方案而不必将该窗口的内容创建为用户控件?
会将内容投射到我从工作中获取内容的窗口中吗?