gpt4 book ai didi

c# wpf - 不能同时设置 DisplayMemberPath 和 ItemTemplate

转载 作者:太空狗 更新时间:2023-10-29 19:57:07 24 4
gpt4 key购买 nike

我想在 listboxItem 中添加工具提示,但是当有 DisplayMemberPath 时它开始出现问题。错误信息说:

cannot set both DisplayMemberPath and ItemTemplate.

当我删除 DisplayMemberPath 时,每个列表项中的工具提示都正常工作。但我不想删除 DisplayMememberPath 因为我需要它。如何解决这个问题?

<ListBox x:Name="lstToys" Style="{DynamicResource ListBoxStyle1}"
ItemsSource="{Binding Strings}" DisplayMemberPath="Toys"
MouseDoubleClick="lstToys_MouseDoubleClick">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}" ToolTip="Here is a tooltip"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

最佳答案

DisplayMemberPath 实际上是单个属性的模板,显示在 TextBlock 中。如果你设置:

<ListBox x:Name="lstToys" Style="{DynamicResource ListBoxStyle1}"  
ItemsSource="{Binding Strings}" DisplayMemberPath="Toys">
</ListBox>

相当于:

<ListBox x:Name="lstToys" Style="{DynamicResource ListBoxStyle1}"  
ItemsSource="{Binding Strings}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Toys}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

您可以简单地删除 DisplayMemberPath 路径并使用您的 DataTemplateBinding 中的值:

<ListBox x:Name="lstToys" Style="{DynamicResource ListBoxStyle1}"  
ItemsSource="{Binding Strings}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Toys}" ToolTip="Here is a tooltip!"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

编辑

如果你想设置一个ToolTip但保留DisplayMemberPath,你可以在ItemContainerStyle中完成:

<ListBox x:Name="lstToys" Style="{DynamicResource ListBoxStyle1}"  
ItemsSource="{Binding Strings}" DisplayMemberPath="Toys">
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Setter Property="ToolTip" Value="Here's a tooltip!"/>
</Style>
</ListBox.ItemContainerStyle>
</ListBox>

我不建议这样做。请记住,使用 DisplayMemberPath 会阻止您在数据模板中进行任何复杂的绑定(bind)。

关于c# wpf - 不能同时设置 DisplayMemberPath 和 ItemTemplate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18273415/

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