我的组合框的值为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>
答案 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.