我需要将字符串集合中的字符串集合绑定到DataGrid(Infragistics)。
然而,当我像这样绑定它时:
<DataPresenter:XamDataGrid x:Name="xamDataGrid" DataSource="{Binding TheCollection}">
要么:
public List<string[]> TheCollection
或者这个:
public List<List<string>> TheCollection
我明白了:
我需要使用哪种.NET类型,以便在集合中将此集合显示为网格,即如下所示:
bank11 1111111
bank12 2222222
我不能使用自定义对象,因为这个模块使用的是无法引用其他模块的模块,并且必须接受简单的.NET类型。