1

我有几个 ListBox 并设置了组样式以制作组扩展器。我希望所有的 ListBoxes 使用相同的样式信息来使它们都成为扩展器,但我希望能够将标题的内容更改为自定义样式的每次使用。

有什么办法我可以取出但仍然编辑的内容

目前,我正在使用与此类似的语法:

<ListBox x:Name="listBox1" ItemsSource="{Binding}" Height="571" Width="260">

        <ListBox.GroupStyle>
            <GroupStyle>
                <GroupStyle.ContainerStyle>
                    <Style TargetType="{x:Type GroupItem}">
                        <Setter Property="Template">
                            <Setter.Value>
                                <ControlTemplate TargetType="{x:Type GroupItem}">
                                    <Expander IsExpanded="True" Style="{StaticResource GroupBoxExpander}">
                                        <Expander.Header>

                                            <Grid Width="190" Background="Yellow">

                                                <Grid.ColumnDefinitions>
                                                    <ColumnDefinition Width="40" />
                                                    <ColumnDefinition Width="40" />
                                                </Grid.ColumnDefinitions>

                                                <TextBlock Grid.Column="0" Text="Count:" />
                                                <TextBlock Grid.Column="1" Text="{Binding Path=ItemCount}" />

                                            </Grid>

                                        </Expander.Header>
                                        <Expander.Content>
                                            <ItemsPresenter Margin="15,0,0,0"></ItemsPresenter>
                                        </Expander.Content>
                                    </Expander>
                                </ControlTemplate>
                            </Setter.Value>
                        </Setter>
                    </Style>
                </GroupStyle.ContainerStyle>
            </GroupStyle>
        </ListBox.GroupStyle>

        <ListBox.ItemTemplate>
            <DataTemplate>
                <local:ItemControl1 />
            </DataTemplate>
        </ListBox.ItemTemplate>

    </ListBox>

非常感谢任何帮助!

谢谢阅读

4

2 回答 2

1

GroupItem 是一个 ContentControl,因此您可以将相同的模板与不同的 ContentTemplate 一起使用。像这样分开你的风格:

<Style TargetType="{x:Type GroupItem}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type GroupItem}">
                <Expander IsExpanded="True" >
                    <Expander.Header>
                        <ContentPresenter/>
                    </Expander.Header>
                    <Expander.Content>
                        <ItemsPresenter Margin="15,0,0,0"></ItemsPresenter>
                    </Expander.Content>
                </Expander>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
    <Setter Property="ContentTemplate">
        <Setter.Value>
            <DataTemplate>
                <Grid Width="190" Background="Yellow">
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="40" />
                        <ColumnDefinition Width="40" />
                    </Grid.ColumnDefinitions>
                    <TextBlock Grid.Column="0" Text="Count:" />
                    <TextBlock Grid.Column="1" Text="{Binding Path=ItemCount}"/>
                </Grid>
            </DataTemplate>
        </Setter.Value>
    </Setter>
</Style>

ControlTemplate 中的 ContentPresenter 将实例化 DataTemplate,因此这将具有相同的外观,但您可以通过替换 DataTemplate 来自定义标题。您可以使用 ControlTemplate 创建基本样式,然后基于该样式创建其他样式,这些样式重复使用 ControlTemplate 但具有不同的 DataTemplate。

<Style TargetType="{x:Type GroupItem}"
       x:Key="BaseGroupStyle">
    <Setter Property="Template" .../>
</Style>
<Style TargetType="{x:Type GroupItem}"
       BasedOn="{StaticResource BaseGroupStyle}"
       x:Key="CountGroupStyle">
    <Setter Property="ContentTemplate" .../>
</Style>
于 2010-09-08T12:49:55.700 回答
0

您是否尝试将模板(或样式)放在资源部分并设置 x:Shared="false" ?

于 2010-09-08T12:15:59.477 回答