how to change xmldataprovider source in wpf at runtime?

无人久伴 提交于 2019-12-05 22:39:42

You can get the XmlDataProvider instance by writing (XmlDataProvider)this.Resources["organization"] in the code file.

You can then set the Source property to a path from a file dialog.

For example:

var provider = (XmlDataProvider)this.Resources["organization"];
var dialog = new OpenFileDialog();
dialog.Filter = "XML Files|*.xml";
if (dialog.ShowDialog(this)) {
    provider.Source = new Uri(dialog.FileName, UriKind.Absolute);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!