这个绑定对ListView有效吗?

时间:2013-05-08 06:37:09

标签: wpf listview data-binding

我正在尝试根据Items的高度绑定列表视图的高度,并将MaxHeight属性设置为:

MaxHeight="{Binding (ListView.View).ItemHeight*2, RelativeSource={RelativeSource Self}}"

这是正确的方法吗?我无法得到结果。

1 个答案:

答案 0 :(得分:1)

似乎不起作用。将PresentationTraceSources.TraceLevel = High添加到绑定中以查看绑定的有效结果。

设置如下:

{Binding Path=Foo, PresentationTraceSources.TraceLevel=High}

System.Windows.Data Warning: 87 : BindingExpression (hash=6270677): TransferValue - using fallback/default value 'Infinity'
System.Windows.Data Warning: 88 : BindingExpression (hash=6270677): TransferValue - using final value 'Infinity'

如果您需要计算值,请使用Converter并将计算基值传递为ConverterParameter