Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 WPF 中是否可以将窗口视为控件? 例如:将窗口添加到网格或另一个控件的子项?
也许您正在寻找MDI或多文档界面。你可以看看这个:
如果关闭、最小化和最大化按钮不重要,我认为这可以通过声明简单地完成:
FrameWorkElement content = yourWindow.Content
并添加content到 Grid 或 ....
content
你想从中获得什么?如果您想要一个不创建新窗口的多屏幕应用程序,您可以创建用户控件并即时加载它们。