0

我整天都在努力让这个工作。我在最后一个职位。我正在通过 collectionviewsource 使用组描述符,并试图操纵标头。

<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>

我正在寻找标题以显示日期(其分组依据)和星期几(在记录集中)您可以在上面看到我的尝试。在此先感谢斯科特

4

0 回答 0