我目前正在尝试将DataGrid的最后一列设置为星形,以占用网格中所有剩余的水平空间。这是我目前的尝试:
dataGrid.Columns[10].Width = DataGridLengthUnitType.Star // doesn't work
任何人都知道是否/如何实现?在此先感谢您的帮助。
最佳答案
尝试这个:
dataGrid.Columns[10].Width = new DataGridLength(double value here for initial size, DataGridLengthUnitType.Star);
关于c# - 将datagrid列宽设置为在后面的代码中加注星标,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32490775/