我正在进行大量应用,我遇到了一个小问题 我的应用程序有两种语言(阿拉伯语/英语)。 我有ComboBox我想根据语言更改显示内容。
这是我的ComboBox XAML:
<ComboBox x:Name="cmbCustomerGroup" Grid.Row="2" Grid.Column="1" Grid.ColumnSpan="5"
Margin="2" SelectedValuePath="CustomerGroupId" Validation.Error="Validation_Error"
SelectedValue="{Binding Path=CustomerGroupId, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged, NotifyOnValidationError=True}">
<!--<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}"/>
</DataTemplate>
</ComboBox.ItemTemplate>-->
</ComboBox>
这是我的方法:
private void FillCustomerGroups()
{
var oClsCustomers = new ClsCustomerGroups();
var lstCustGrps = oClsCustomers.GetData();
cmbCustomerGroup.ItemsSource = lstCustGrps.ToList<TbCustomerGroups>();
cmbCustomerGroup.DisplayMemberPath = Helper.CurrLang == Helper.SystemLanguage.Arabic ? "CustomerGroupAName" : "CustomerGroupEName";
cmbCustomerGroup.SelectedValuePath = "CustomerGroupId";
}
我得到了这个结果:
这是我的数据库:
答案 0 :(得分:0)
当DisplayMemberPath
设置错误,或者bindable属性不是字符串且没有覆盖ToString()
方法时,通常会发生这种情况。
尝试向TbCustomerGroups
添加新属性,例如CurrentGroupName
,如此
public string CurrentGroupName => Helper.CurrLang == Helper.SystemLanguage.Arabic ? CustomerGroupAName : CustomerGroupEName;
然后设置cmbCustomerGroup.DisplayMemberPath = "CurrentGroupName"
同时检查CustomerGroupAName
和CustomerGroupEName
是字符串还是ToString()
方法
<强>更新强>
如果您使用<ComboBox.ItemTemplate>
DisplayMemberPath