首先,查看最后一列的宽度。这是 ”*”。
这是重现问题的 xaml:
<Window x:Class="DataGridStaredColumnTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:System="clr-namespace:System;assembly=mscorlib" Title="MainWindow" Height="350" Width="525">
<Grid>
<ScrollViewer HorizontalScrollBarVisibility="Auto">
<Grid MinWidth="200" HorizontalAlignment="Stretch">
<DataGrid AutoGenerateColumns="False" HorizontalAlignment="Stretch">
<DataGrid.Columns>
<DataGridTemplateColumn Header="1" Width="Auto">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="Column1" Background="Green"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<DataGridTemplateColumn Header="2" Width="*">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBox Text="Column2" Background="Yellow" HorizontalAlignment="Stretch"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
<DataGrid.Items>
<System:Int16>1</System:Int16>
<System:Int16>2</System:Int16>
<System:Int16>3</System:Int16>
</DataGrid.Items>
</DataGrid>
</Grid>
</ScrollViewer>
</Grid>
</Window>
此处的滚动查看器肯定存在一些问题,因为如果禁用 HorizontalScrollbar,则一切正常。
我发现这篇文章与问题有关。然而,该解决方案包含另一个在窗口扩大后边框不断增长的错误。
有人知道如何杀死这个额外的列吗?