我在 WPF 中使用 ListView。为了扩展最后一列的宽度,我使用了与此类似的方法:
当我实现附加代码时,总是会出现一个水平滚动条,所以我知道 ListView 的内容比控件大。可以隐藏滚动条的可见性,但这并不能解决问题。
public class WidthConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
double listViewWidth;
double otherColumnsTotalWidth = 0;
double.TryParse(values[0].ToString(), out listViewWidth);
var arrayOfColumns = values[1] as IList<GridViewColumn>;
for (int i = 0; i < arrayOfColumns.Count - 1; i++)
{
otherColumnsTotalWidth += arrayOfColumns[i].Width;
}
return (listViewWidth - otherColumnsTotalWidth) < 0 ? 0 : (listViewWidth - otherColumnsTotalWidth);
}
public object[] ConvertBack(object value, Type[] targetTypes,
object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
和 XAML:
<GridViewColumn Header="Text" DisplayMemberBinding="{Binding Text1}">
<GridViewColumn.Width>
<MultiBinding Converter="{StaticResource LastColumnWidtConverter}">
<Binding Path="ActualWidth" RelativeSource="{RelativeSource AncestorType=ListView}"/>
<Binding Path="View.Columns" RelativeSource="{RelativeSource AncestorType=ListView}"/>
</MultiBinding>
</GridViewColumn.Width>
即使内容较小,为什么还会出现 HorizontalScrollBar?这里基本上计算列的宽度并从整个宽度中减去。所以剩余的宽度应该完全适合填充剩余的空间。
查看右侧的最后一列(应该扩展),列标题中会出现一个分隔符。为什么会这样?
我该如何处理?