web-dev-qa-db-ja.com

プロパティ値に基づいてデータバインドされたリストボックスアイテムを無効にする方法は?

プロパティの値に基づいてデータバインドされた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>
30
J W

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>
64
japf