我有StackPanel
,其中包含TextBox
标题和ItemsControl
项目。如果提供项目的列表为空,我想隐藏整个StackPanel。
我没有为绑定编写专用的Converter,而是想试试QuickConverter(https://quickconverter.codeplex.com/)。 QuickConverter允许在绑定中使用内联C#表达式。
所以这是我的标记:
<StackPanel Visibility="{qc:Binding '$P > 0 ? Visibility.Visible : Visibility.Collapsed', P={Binding Path=Value.Count}}"> <!-- this does not work. It's always shown, regardless of the element count -->
<TextBlock Text="{qc:Binding '$P', P={Binding Path=Value.Count}}"></TextBlock> <!-- for debugging purposes only. It correctly shows the element count for the list -->
<TextBlock Text="{qc:Binding '$P.Count', P={Binding Path=Value}}"></TextBlock> <!-- for debugging purposes only. It should do the same as the line above, but it does nothing -->
...
<ItemsControl ItemsSource="{Binding Path=Value}">
...
</ItemsControl>
</StackPanel>
第一个文本块显示预期结果,所有其他QuickConverter表达式都无法正常工作。在设计时和运行时都没有错误或异常。
感谢您的任何想法。
克里斯。
答案 0 :(得分:3)
DataTrigger
中可能有Style
,如下所示:
<StackPanel>
<StackPanel.Style>
<Style TargetType="StackPanel">
<Style.Triggers>
<DataTrigger Binding="{Binding Value.Count}" Value="0">
<Setter Property="Visibility" Value="Collapsed"/>
</DataTrigger>
</Style.Triggers>
</Style>
</StackPanel.Style>
...
</StackPanel>