我目前正面临的问题是,当我用鼠标悬停时,我的已解散的ComboBox
有一个工具提示将无法显示。当ComboBox
未被禁用时,工具提示会正确显示。
ComboBox
的代码是:
<ComboBox ItemsSource="{Binding AvailableItems}"
SelectedValue="{Binding Item, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True}"
IsReadOnly="{Binding IsDeletable, Converter={StaticResource BooleanInverter}}"
IsEnabled="{Binding IsDeletable}"
IsHitTestVisible="{Binding IsDeletable}"
ToolTip="{Binding Item.ConcatenatedNameInterchanged}"
ToolTipService.ShowOnDisabled="True" />
绑定值为:
IsReadOnly = True
IsEnabled = False
IsHitTestVisible = False
ToolTip = "Lorem ipsum dolor sit amet."
我试过:
ToolTipService.ShowOnDisabled
,但未成功。IsHitTestVisible="True"
,但没有成功。你有什么想法吗?提前谢谢!