2

我有一个可编辑的组合框,我在其中使用使用 MultiBinding 的 ItemTemplate。组合框展开时显示的项目按我的预期显示。However, when an item is selected the text displayed is the object type instead. 我看过建议覆盖 ToString() 的帖子,但如果可能的话,我想避免这种情况。

我绑定的对象是 UserDetail 对象的集合,其中 UserDetail 有一个名字和姓氏以及一个 BarcodeID,我将其显示为 ComboBox 中每个项目的字符串。我想显示与所选项目相同的字符串。相反,我看到的是MyNameSpace.UserDetail

这是我的组合框的 xaml。请告诉我哪里出错了:

<ComboBox IsEditable="True" IsReadOnly="False" Name="myUser" 
          TextBoxBase.TextChanged="myCombo_TextChanged"  
          SelectionChanged="myCombo_SelectionChanged">
    <ComboBox.ItemTemplate>
        <DataTemplate>
            <TextBlock>
                <TextBlock.Text>
                    <MultiBinding StringFormat="{}{1}, {0}, {2}">
                        <Binding Path="FirstName" />
                        <Binding Path="LastName" />
                        <Binding Path="BarcodeId" />
                    </MultiBinding>
                </TextBlock.Text>
            </TextBlock>
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>

仅供参考,BarcodeID 用于可选的条形码徽章阅读器。

4

2 回答 2

2

您应该只将文本数据绑定到 IsEditable = true 的组合框。

消除IsEditable="True"

请参阅此处了解更多信息。

于 2012-05-11T16:42:12.427 回答
-2

设置属性

TextSearch.TextPath="your_binding_property_path"。

来自http://www.shujaat.net/2010/08/wpf-editable-combobox-with-datatemplate.html

于 2015-12-16T09:33:34.757 回答