如何在C#中更改TextBlock文本绑定

时间:2016-12-20 09:14:52

标签: c# xaml combobox binding textblock

我正在进行大量应用,我遇到了一个小问题 我的应用程序有两种语言(阿拉伯语/英语)。 我有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";
}

我得到了这个结果:

result

这是我的数据库:

database

1 个答案:

答案 0 :(得分:0)

DisplayMemberPath设置错误,或者bindable属性不是字符串且没有覆盖ToString()方法时,通常会发生这种情况。

尝试向TbCustomerGroups添加新属性,例如CurrentGroupName,如此

 public string CurrentGroupName => Helper.CurrLang == Helper.SystemLanguage.Arabic ? CustomerGroupAName : CustomerGroupEName;

然后设置cmbCustomerGroup.DisplayMemberPath = "CurrentGroupName"

同时检查CustomerGroupANameCustomerGroupEName是字符串还是ToString()方法

<强>更新

如果您使用<ComboBox.ItemTemplate>

,也请勿使用DisplayMemberPath