【WPF】wpf加载和保存xaml文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了【WPF】wpf加载和保存xaml文件相关的知识,希望对你有一定的参考价值。
参考技术A 加载效果图:public MainWindow(string xamlFile)
InitializeComponent();
DependencyObject rootElement;
using (FileStream fs = new FileStream(xamlFile, FileMode.Open))
rootElement = (DependencyObject)XamlReader.Load(fs);
Content = rootElement;
//查找控件(方法一)
button1 = (Button) LogicalTreeHelper.FindLogicalNode(rootElement, "button1");
修改app.xaml.cs里的启动项
保存功能:
换成Create可以覆盖保存文件,不会重复而报错。
以上是关于【WPF】wpf加载和保存xaml文件的主要内容,如果未能解决你的问题,请参考以下文章
wpf:如何使 ComboBoxItems 在 xaml 中保存整数