我像这样读了一个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 也是空白的。