我想将数据网格分组为两列。姓名和姓氏。 它基本上起作用,但它弄乱了我的整个布局。
我的代码:
的Xaml:
<DataGrid x:Name="dgErfasst" RowEditEnding="dgMitarbeiter_RowEditEnding" AutoGenerateColumns="False" Margin="0,23,8,53" CanUserAddRows="False" CanUserDeleteRows="False" CanUserResizeRows="False" HeadersVisibility="Column" Background="White" SelectionMode="Single">
<DataGrid.Columns>
<DataGridTextColumn IsReadOnly="true" Width="auto" Header="ID" Binding="{Binding id}"/>
<DataGridTextColumn Width="*" Header="Bezeichnung" Binding="{Binding bezeichnung}"/>
<DataGridTextColumn Width="*" Header="Typ" Binding="{Binding typ}"/>
<DataGridTextColumn Width="*" Header="Nettopreis" Binding="{Binding nettopreis}"/>
</DataGrid.Columns>
<DataGrid.GroupStyle>
<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}">
<StackPanel Background="#FF706F6F" DataContext="{Binding Items}">
<DockPanel HorizontalAlignment="Stretch" Margin="0 5px 0 5px">
<TextBlock Foreground="White" FontWeight="Bold" Margin="0 0 20px 0" TextWrapping="NoWrap">
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="vorname" />
<Binding Path="nachname" />
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</DockPanel>
<ItemsPresenter />
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</GroupStyle.ContainerStyle>
</GroupStyle>
</DataGrid.GroupStyle>
</DataGrid>
CS:
dgErfasst.ItemsSource = mainController.loadErfasst();
CollectionView cv = (CollectionView)CollectionViewSource.GetDefaultView(dgErfasst.ItemsSource);
cv.GroupDescriptions.Clear();
PropertyGroupDescription pgd = new PropertyGroupDescription("vorname"); //name
cv.GroupDescriptions.Add(pgd);
pgd = new PropertyGroupDescription("nachname"); //surname
cv.GroupDescriptions.Add(pgd);
如果我只添加一个分组描述,则布局大部分都是完美的。但是使用第二个groupdescription(&#34; nachname&#34;)它会变得混乱:
我有什么想法可以修复布局?也许是一种不同的分组方式? 感谢
答案 0 :(得分:2)
如果凌乱&#39;你的意思是Max Musterfrau的重复结果集,你真的只希望一个组成为Name + Surname的独特集合(所以Max Musterfrau,Max Smith和Johnny Smith都是单独的,单独的组)...你可以添加一个ViewModel的新属性,它将完整的唯一名称作为单个属性返回。然后为该属性添加一个PropertyGroupDescription
。
public string FullName { get { return vorname + " " + nachname; } }
和...
CollectionView cv = (CollectionView)CollectionViewSource.GetDefaultView(dgErfasst.ItemsSource);
cv.GroupDescriptions.Clear();
PropertyGroupDescription pgd = new PropertyGroupDescription("FullName"); //name
cv.GroupDescriptions.Add(pgd);