我有一个列表框,它使用 GroupStyle 对项目进行分组。我想在包含所有组的堆栈面板底部添加一个控件。此附加控件需要成为滚动内容的一部分,以便用户滚动到列表底部以查看该控件。如果我使用没有组的列表框,则通过修改列表框模板可以轻松完成此任务。但是,将项目分组后,ListBox 模板似乎仅适用于每个组。我可以修改 GroupStyle.Panel,但这不允许我向该面板添加项目。
<ListBox>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.GroupStyle>
<GroupStyle>
<GroupStyle.Panel>
<ItemsPanelTemplate>
<VirtualizingStackPanel/> **<----- I would like to add a control to this stackpanel**
</ItemsPanelTemplate>
</GroupStyle.Panel>
<GroupStyle.ContainerStyle>
<Style TargetType="{x:Type GroupItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type GroupItem}">
<Grid>
<ItemsPresenter />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</GroupStyle.ContainerStyle>
</GroupStyle>
</ListBox.GroupStyle>
这应该让我知道我需要做什么: