gpt4 book ai didi

wpf - 检查组合框 : how do i display the list of selected items?

转载 作者:行者123 更新时间:2023-12-04 21:53:53 28 4
gpt4 key购买 nike

我正在使用 Extended WPF Toolkit's CheckComboBox .绑定(bind)工作正常。使用自定义 ItemTemplate 时,如何显示选定的名称
jane - 老师,john - 开发人员,joe - 护士
Text属性(property)?使用 DisplayMemberPathItemTemplate不起作用。

<xctk:CheckComboBox ItemsSource="{ Binding Path=Customers }" Delimiter="," 
ValueMemberPath="Id" SelectedValue="{ Binding SelectedCustomerIds }"
ItemTemplate="{ StaticResource ccBTemplate }" />​

<DataTemplate x:Key="ccBTemplate ">
<TextBlock Text="{ Binding Path=Name }" />
<TextBlock Text="{ Binding Path=JobTitle }" />
</DataTemplate>

最佳答案

Text属性(property)通吃SelectedItems , 通过调用 ToString() 将它们转换为文本在他们身上,最后加入他们Delimiter .

所以你只需要覆盖ToString()在您的客户类别上如下

public override string ToString
{
return Name + " - " + Job;
}

关于wpf - 检查组合框 : how do i display the list of selected items?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30224474/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com