我一直在努力让这个工作。我是最后的职位。 我正在通过collectionsviewsource使用组描述符,并试图操纵标题。
<GroupStyle>
<GroupStyle.ContainerStyle>
<Style TargetType="{x:Type GroupItem}">
<Setter Property="Margin" Value="0,0,0,5"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type GroupItem}">
<Border Height="Auto" Margin="4,2,2,0" CornerRadius="5" BorderThickness="1" BorderBrush="#FF9B9595" Background="#FFFDF9CA">
<StackPanel >
<TextBlock Foreground="Firebrick" Text="{Binding Path=Name,StringFormat=dd/MM/yyyy}" FontSize="13" Margin="10,0,0,0"/>
<TextBlock Text="{Binding Items[0].NameOfDay}"/>
<ItemsPresenter/>
</StackPanel>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</GroupStyle.ContainerStyle>
<GroupStyle.Panel>
<ItemsPanelTemplate>
<WrapPanel></WrapPanel>
</ItemsPanelTemplate>
</GroupStyle.Panel>
</GroupStyle>
我希望得到标题来显示日期(分组的日期)和星期几(在记录集中) 你可以在上面看到我的尝试。 提前致谢 斯科特