绑定ListBox.GroupStyle.ContainerStyle

我有一个像这样的XAML代码


<ListView.GroupStyle>

    <GroupStyle>

        <GroupStyle.ContainerStyle>

            <Style TargetType="{x:Type GroupItem}">

                <Setter Property="Template">

                    <Setter.Value>

                        <ControlTemplate>

                            <Expander IsExpanded="True" Background="Transparent">

                                <Expander.Header>

                                    <StackPanel>

                                        <TextBlock Text="{Binding ItemCount}" Foreground="{Binding}"></TextBlock>

                                    </StackPanel>

                                </Expander.Header>

                                <ItemsPresenter/>

                            </Expander>

                        </ControlTemplate>

                    </Setter.Value>

                </Setter>

            </Style>

        </GroupStyle.ContainerStyle>

    </GroupStyle>

</ListView.GroupStyle>

在<TextBlock Text="{Binding ItemCount}" Foreground="{Binding}"></TextBlock> 我看不到任何财产ItemCount在DataContext窗口和的ListView。那是哪里ItemCount来的呢?当我按F12导航代码时,Visual Studio找不到定义。


请说明它的来源以及它是经常使用的财产吗?


千万里不及你
浏览 332回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP