aが多くのエントリで埋められて垂直スクロールバーが表示される場合、スクロールビューアでグループヘッダーを非表示にしDataGrid
たくありません。代わりに、各グループDataGrid
ごとに設定したいと思います。私の場合、常に2つのグループしかないため、0〜2個のスクロールバーがあります。ScrollBar
最小限のサンプルコードは次のとおりです。http ://www.wpftutorial.net/datagrid.html#grouping
Customers = new ListCollectionView(_customers);
Customers.GroupDescriptions.Add(new PropertyGroupDescription("Gender"));
XAML:
<DataGrid ItemsSource="{Binding GroupedCustomers}">
<DataGrid.GroupStyle>
<GroupStyle>
<GroupStyle.HeaderTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding Path=Name}" />
</StackPanel>
</DataTemplate>
</GroupStyle.HeaderTemplate>
<GroupStyle.ContainerStyle>
<Style TargetType="{x:Type GroupItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type GroupItem}">
<Expander>
<Expander.Header>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Path=Name}" />
<TextBlock Text="{Binding Path=ItemCount}"/>
<TextBlock Text="Items"/>
</StackPanel>
</Expander.Header>
<ItemsPresenter />
</Expander>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</GroupStyle.ContainerStyle>
</GroupStyle>
</DataGrid.GroupStyle>
</DataGrid>
その基本的な例でも問題が発生します。ScrollViewer
どこかで使う必要があると思いますか?