即使在設置ToolTipService.ShowOnDisabled =「True」後,Tooltip在禁用的複選框上也不可見。工具提示在禁用複選框上不可見wpf
<CheckBox Grid.Column="0" HorizontalAlignment="Center" Visibility="{Binding Converter={StaticResource TaskCompletionVisbilityConverter},ConverterParameter='chkbox'}"
Height="16" Width="16" Foreground="{Binding Converter={StaticResource TaskColorConverter}}"
ToolTipService.ShowOnDisabled="True" ToolTipService.IsEnabled="True"
ToolTip="Check To complete Task"
IsEnabled="{Binding State, Converter={StaticResource EnableDisableConverter},
ConverterParameter='checkbox',Mode=TwoWay}" Margin="37,5,0,0">
的[WPF工具提示能見度(http://stackoverflow.com/questions/3149016/wpf-tooltip-visibility) – netaholic
我不認爲這個問題是[WPF工具提示的副本可能重複能見度](http://stackoverflow.com/questions/3149016/wpf-tooltip-visibility)。的確,@ Pa1已經使用了'ToolTipService.ShowOnDisabled =「True」'和'ToolTipService.IsEnabled =「True」'。我想工具提示應該是可見的,所以也許有其他東西隱藏它。 Pa1,你能提供關於你的XAML的更多細節嗎? –