WPF将datagrid绑定到字符串可观察集合

时间:2016-08-09 11:47:25

标签: c# datagrid bind observablecollection itemssource

我总是将datagrid绑定到可观察的类集合。 现在它应该更简单:

public ObservableCollection<string> obcCodes{ get; set; }

然后

if (obcCodes== null)
    obcCodes= new ObservableCollection<string>();
obcCodes.Add("K2001");
obcCodes.Add("K2002");
obcCodes.Add("K2003");
obcCodes.Add("K2004");

dtgCodes.ItemsSource = obcCodes;

所以我希望在数据网格中看到这些代码而不是我看到的:

enter image description here

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

正如所解释的here字符串是不可变的

所以你必须使用

    public class StringWrapper { public string Text { get; set; } }

然后像这样使用它:

    obcCodes.Add(new StringWrapper() { Text = "K2001" });
通过这样做,您将能够修改或删除数据网格中的字符串。