当 ListBox 控件绑定到字符串列表时,我们如何显示 ListBoxItem 的工具提示。下面是我的 ListBox 的源代码,其中 ConcernedConditions 是 List 类型。
<ListBox ItemsSource="{Binding ConcernedConditions}" Style="{StaticResource CustomStyle}">
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListBoxItem}">
<ContentPresenter />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ListBox.ItemContainerStyle>
</ListBox>