如何将扩展器的 IsExpanded 属性 绑定到扩展器内容的 Items.Count 作为样式中的 ItemsControl

How to bind Expander's IsExpanded property to Items.Count of Expander's Content as ItemsControl in Style

正如标题所说,我想将我的 Expander 的 属性 IsExpanded 绑定到 ItemsControl 的 Items.Count 属性,这是 Expander 的内容。我需要更多扩展器的绑定,所以样式或类似的东西会很好。我已经尝试了在这里或其他网站上找到的一些东西,但没有任何效果。

这是我的实际代码:

<Style x:Key="ExpanderStyleKey" TargetType="Expander">

    <Style.Triggers>

        <DataTrigger Binding="{Binding RelativeSource={x:Static RelativeSource.Self}, Path=Content.Items.Count}" Value="0">

            <Setter Property="IsExpanded" Value="False"/>

        </DataTrigger>

    </Style.Triggers>

</Style>

感谢您的帮助!

编辑:

这是我的一个 Expander 的代码:

<Expander Name="exp1" 
          Header="Expander1" 
          Style="{StaticResource ExpanderStyleKey}">

    <ItemsControl Name="itcMain"
                  ItemsSource="{Binding Path=ListInCodeBehind, Mode=OneWay}">

        <ItemsControl.Template>

            <ControlTemplate>

                <ScrollViewer VerticalScrollBarVisibility="Auto"
                          HorizontalScrollBarVisibility="Disabled">

                    <ItemsPresenter/>

                </ScrollViewer>

            </ControlTemplate>

        </ItemsControl.Template>

        <ItemsControl.ItemsPanel>

            <ItemsPanelTemplate>

                <WrapPanel/>

            </ItemsPanelTemplate>

        </ItemsControl.ItemsPanel>

        <ItemsControl.ItemTemplate>

            <DataTemplate>

                <TextBox Text="{Binding Path=ExampleProperty}"/>

            </DataTemplate>

        </ItemsControl.ItemTemplate>

    </ItemsControl>

</Expander>

示例,

<Expander>
   <Expander.Style>
      <Style TargetType="Expander">
          <Setter Property="IsExpanded" Value="{Binding Content.Items.Count, Mode=OneWay, RelativeSource={RelativeSource Self}}"/>
      </Style>
   </Expander.Style>
   <Expander.Content>
      <ItemsControl>
          <ItemsControl.Items>
              <TextBlock Text="Item1"/>
              <TextBlock Text="Item2"/>
              <TextBlock Text="Item3"/>
          </ItemsControl.Items>
      </ItemsControl>
   </Expander.Content>
 </Expander>