ListBox コントロールが文字列のリストにバインドされている場合、ListBoxItem のツールチップを表示するにはどうすればよいですか。以下は、ConcernedConditions が List タイプである、私の ListBox のソース コードです。
<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>