如何基于属性值禁用数据绑定ListBox项?

时间:2009-12-01 07:26:39

标签: wpf xaml listbox datatemplate

是否有人知道是否以及如何根据属性值禁用数据绑定ListBox中的项目?

我希望DataTrigger,当某个属性为false时,禁用此项(无法选择),而不会影响ListBox中的其他项。

<ListBox>
  <ListBox.ItemTemplate>
    <DataTemplate>
      <TextBlock Name="textBlock" Text="{Binding Description}"/>
      <DataTemplate.Triggers>
        <DataTrigger Binding="{Binding IsEnabled}" Value="False">
          ??
        </DataTrigger>
      </DataTemplate.Triggers>
    </DataTemplate>
  </ListBox.ItemTemplate>
</ListBox>

1 个答案:

答案 0 :(得分:64)

您可以使用ItemContainerStyle:

<ListBox>
  <ListBox.ItemContainerStyle>
    <Style TargetType="{x:Type ListBoxItem}">
      <Style.Triggers>
        <DataTrigger Binding="{Binding YourPropertyName}" Value="False">
          <Setter Property="IsEnabled" Value="False"/>
        </DataTrigger>
      </Style.Triggers>
    </Style>
  </ListBox.ItemContainerStyle>
</ListBox>