我读了像这样的xml文件
string appDataPath1 = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
string configPath1 = appDataPath1 + "/LWRF/ReaderProfiles";
string fn = System.IO.Path.Combine(configPath1 + ComboBoxProfiles.Text);
_currentProfile.Clear();
try
{
Log("Loading profile: " + fn);
_currentProfile.ReadXml(fn);
_dgvProfile.ItemsSource = _currentProfile.DefaultView;
}
catch
{
}
我还需要做些什么来使xml文件内容显示在gridview中?我将此代码添加到ComboBox_SelectionChanged
事件中,但即使选择更改后,我的datagridview仍为空白。
答案 0 :(得分:0)
很可能你在configPath1中缺少/
:
string configPath1 = appDataPath1 + "/LWRF/ReaderProfiles/";