にがありますが、Expander
2つのDataGrid
アイテムのみを表示したいので、ユーザーが[展開]をクリックしたときに残りのアイテムを表示します。
どうすればそれができますか?
<DataGrid.GroupStyle>
<GroupStyle AlternationCount="7" >
<GroupStyle.ContainerStyle>
<Style TargetType="{x:Type GroupItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type GroupItem}">
<Expander IsExpanded="False" Background="{Binding XPath=recipient_color}">
<Expander.Header>
<Label Content="{Binding}">
</Label>
</Expander.Header>
<Expander.Content>
<ItemsPresenter/>
</Expander.Content>
</Expander>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</GroupStyle.ContainerStyle>
</GroupStyle>
</DataGrid.GroupStyle>