gpt4 book ai didi

c# - WPF ListView 星号 ("*") 大小

转载 作者:行者123 更新时间:2023-11-30 18:35:52 26 4
gpt4 key购买 nike

我想用特定列填充 WPF ListView 的剩余区域。

我一直在谷歌搜索并找到了以下解决方案:

<GridViewColumn Header="Error" DisplayMemberBinding="{Binding ErrorDescription}" 
Width="{Binding RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type ListView}}, Converter={StaticResource WidtConvert}} />

和转换器:

public object Convert(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
ListView l = value as ListView;
GridView g = l.View as GridView;
double total = 0;
for (int i = 0; i < g.Columns.Count - 1; i++)
{
total += g.Columns[i].ActualWidth;
}
return (l.ActualWidth - total);
}

但问题是在调用转换器时,包括 ListView.ActualWidth 在内的所有列都是 0。

我不想在后面使用任何代码,例如 Listview_SizeChanged

最佳答案

您可以将转换器从代码隐藏绑定(bind)到 ListView 控件的 Loaded 事件的 Width 属性。在这种情况下,转换器将在控件完全加载并且实际宽度传输到转换器后被触发。

关于c# - WPF ListView 星号 ("*") 大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14455699/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com