我在DataGrid
中有一个Grid
,并希望DataGrid
在用户在DataGrid
的行中写入文字时动态调整大小。
示例:
| Cell 1 | Cell 2 |
如果用户在单元格1中写入Hello World
,那么我们有:
| Hello W| Cell 2 |
是否可以让DataGrid
动态调整大小:
| Hello World | Cell 2|
答案 0 :(得分:0)
设置ColumnWidth
<DataGrid ColumnWidth="*" />
或
<DataGrid ColumnWidth="Auto" />