根据 ItemsControl 的项目索引隐藏控件

Hide Control depending on Item Index of ItemsControl

在我的 xaml 中,我有一个 ItemsControl。是否可以在 ItemsControl 上设置 ItemIndex 属性?基本上,如果项目索引为 1

,我想隐藏其中一个子控件 (TxtNodeData)
<ItemsControl ItemsSource="{Binding ConditionList}">
  <ItemsControl.ItemTemplate>
    <DataTemplate>
      <WrapPanel>
          <TextBlock Text="{Binding NodeData}" Name="TxtNodeData"/>
          <Button Content="+" />
          <ComboBox ItemsSource="{Binding NodeNames}" DisplayMemberPath="name" SelectedValue="{Binding ConditionalNodeId, Mode=TwoWay}" SelectedValuePath="id"> </ComboBox>
          <Button Content="-" />
       </WrapPanel>
     </DataTemplate>
   </ItemsControl.ItemTemplate>

您可以将 AlternationCount 的组合设置为列表中的项目数并在 AlternationIndex 为 1

时触发
<ItemsControl ItemsSource="{Binding ConditionList}" AlternationCount="{Binding ConditionList.Count}">
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <WrapPanel>
                <TextBlock Text="{Binding NodeData}" Name="TxtNodeData">
                    <TextBlock.Style>
                        <Style TargetType="{x:Type TextBlock}">
                            <Style.Triggers>
                                <DataTrigger 
                                    Binding="{Binding 
                                        RelativeSource={RelativeSource AncestorType={x:Type ContentPresenter}}, 
                                        Path=(ItemsControl.AlternationIndex)}" 
                                    Value="1">
                                    <Setter Property="Visibility" Value="Collapsed"/>
                                </DataTrigger>
                            </Style.Triggers>
                        </Style>
                    </TextBlock.Style>
                </TextBlock>
                <!-- other controls -->
            </WrapPanel>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>