0

私はそのように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イベントに追加しましたが、選択が変更された後でもデータグリッドビューが空白です。

4

1 に答える 1

0

ほとんどの場合/、 configPath1 に a がありません:

string configPath1 = appDataPath1 + "/LWRF/ReaderProfiles/";
于 2013-02-16T22:07:16.383 に答える