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.
如何Window从 XAML 文件创建实例?目录中有不同的 XAML 文件(自定义窗口)。我需要加载必要的 XAML 并显示它。存在方法为Window.LoadFromXAML?
Window
Window.LoadFromXAML
您可以使用XamlReader.Load来完成。它返回相应对象树的根。在您的情况下,是 Window 类的实例。