MvvM Light - 将动态2D数组绑定到wpf数据网格

时间:2017-12-17 17:04:37

标签: c# arrays wpf mvvm datagrid

我想将2D数组绑定到wpf中的数据网格。 我的代码看起来像这样(C#和wpf):

Table = new Collection<string[]>();
Table.Add(new string[] { "one", "two", "three" });
Table.Add(new string[] { "a1", "a2", "a3" });
Table.Add(new string[] { "b1", "b2", "b3" });
Table.Add(new string[] { "c1", "c2", "c3" });
Table.Add(new string[] { "d1", "d2", "d3" });

<StackPanel>
    <DataGrid ItemsSource="{Binding Table}"></DataGrid>
</StackPanel>

这是目前的表格:

Table picture

希望看到的是&#34;一个&#34;,&#34;两个&#34;和&#34;三&#34;在表头中,其余的数组行作为表的内容。

干杯

0 个答案:

没有答案