通过ItemsSource将内容添加到WPF datagridview

时间:2013-02-16 21:30:50

标签: c#

我读了像这样的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仍为空白。

1 个答案:

答案 0 :(得分:0)

很可能你在configPath1中缺少/

string configPath1 = appDataPath1 + "/LWRF/ReaderProfiles/";