0

我想在我的表单(xaml)中显示人的名字和姓氏我使用绑定从屏幕获取人员属性,但我没有在屏幕中计算属性,因为我不知道如何创建这个!在该代码中,我只使用名字,但我想要名字和姓氏!!!:(

<telerik:Label Grid.Row="4" Grid.Column="0" Content="{Binding PersonelPropertiesTab,Source={StaticResource localResource}}"/>
<telerik:RadComboBox Grid.Row="4" Grid.Column="1" ItemsSource="{Binding Screen.PersonelProperties}"
                                         SelectedItem="{Binding Screen.CurriculuminformationProperty.PersonelProperty,Mode=TwoWay}"
                                         SelectedValue="Id" DisplayMemberPath="applicantfirstname"/>
                    <viewer:DescriptionViewer Grid.Row="4" Grid.Column="5" Description="{Binding PersonelPropertiesTab,Source={StaticResource localResource}}"/>

我读了一些关于它们是用于电灯开关而不是银光的文章。你能给我很好的参考吗?

4

1 回答 1

2

DisplayMemberPath您可以DataTemplate为 ComboBox 项目设置 a ,而不是设置。我没有用 RadComboBox 测试过,但我认为它的行为类似于标准 ComboBox:

<telerik:RadComboBox ...>
    <telerik:RadComboBox.ItemTemplate>
        <DataTemplate>
            <TextBlock>
                <TextBlock.Inlines>
                    <Run Text="{Binding FirstName}"/>
                    <Run Text=" "/>
                    <Run Text="{Binding LastName}"/>
                </TextBlock.Inlines>
            </TextBlock>
        </DataTemplate>
    </telerik:RadComboBox.ItemTemplate>
</telerik:RadComboBox>
于 2013-09-23T12:17:07.743 回答