如何让DataGrid的内容大小动态增长?

时间:2014-05-14 21:55:52

标签: c# wpf datagrid

我在DataGrid中有一个Grid,并希望DataGrid在用户在DataGrid的行中写入文字时动态调整大小。

示例:

| Cell 1 | Cell 2 |

如果用户在单元格1中写入Hello World,那么我们有:

| Hello W| Cell 2 |

是否可以让DataGrid动态调整大小:

| Hello World | Cell 2|

1 个答案:

答案 0 :(得分:0)

设置ColumnWidth

<DataGrid ColumnWidth="*" />

<DataGrid ColumnWidth="Auto" />