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 文件内容显示在 gridview 中?我将此代码添加到一个ComboBox_SelectionChanged事件中,但即使在选择更改后我的 datagridview 也是空白的。

4

1 回答 1

0

很可能您/在 configPath1 中缺少 a :

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