私はそのように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 ファイルの内容をグリッドビューに表示するには、他に何をする必要がありますか? このコードをComboBox_SelectionChanged
イベントに追加しましたが、選択が変更された後でもデータグリッドビューが空白です。