0

我有一个带有组合框列的数据网格,它工作正常,但是否有可能获得 2 个显示成员?我想在框中显示前名和姓氏,但我只得到其中一个......

<WpfToolkit:DataGrid AutoGenerateColumns="false" EnableRowVirtualization="True" Height="226" ItemsSource="{Binding Source={StaticResource DataSet}, Path=PlacementsEmployees}" HorizontalAlignment="Left" Margin="739,57,0,0" Name="mitGrid" VerticalAlignment="Top" Width="Auto" DataContext="{Binding}" RowDetailsVisibilityMode="VisibleWhenSelected" IsSynchronizedWithCurrentItem="True" IsReadOnly="True" FontFamily="Verdana" FontSize="11">
    <WpfToolkit:DataGrid.Columns>
        <WpfToolkit:DataGridComboBoxColumn x:Name="test" Header="Employees" ItemsSource="{Binding Source={StaticResource DataSet}, Path=Employees}" SelectedValuePath="ID" SelectedValueBinding="{Binding Path=PE_Employees}" DisplayMemberPath="E_Surname" -> maybe "E_Forename; E_Surname" ?? <- IsReadOnly="True" />
    </WpfToolkit:DataGrid.Columns>
</WpfToolkit:DataGrid>

我只想使用一列的原因是,我只想要一个标题(在我的情况下:员工)你们看到我的问题了吗?也许数据模板有可能:)

4

1 回答 1

0

DisplayMemberPathDataTemplateproperty 允许您在仅显示绑定类的一个属性的情况下不创建自定义。如果您想要的不仅仅是显示一个属性,您应该创建自己的DataTemplate.

于 2012-05-10T10:40:03.423 回答