我有一个像这样的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找不到定义。
请说明它的来源以及它是经常使用的财产吗?
相关分类