选择与展开

时间:2015-07-31 19:04:30

标签: wpf telerik radcombobox

我的组合框的值为0,1,2。当用户展开组合框以选择值时,我想将值显示为0 - Bad,1 - Average,2 - Good。

但是当用户选择该值时,我只想显示该值。

我该怎么做?这是我的代码

 <telerik:RadComboBox ItemsSource="{Binding Flags}"
                            SelectedValue="{Binding FlagId,Mode=TwoWay}"
                            SelectedValuePath="Id"
                            DisplayMemberPath="Id">               
 </telerik:RadComboBox>

1 个答案:

答案 0 :(得分:0)

You'll need to switch DisplayMemberPath="Id" to some property of the type Flags is, that displays the ID and description in the format you want.