ボタンが無効になっている場合にのみボタンのツールチップが表示されるようにするにはどうすればよいですか?
ツールチップの可視性を何にバインドできますか?
ボタンが無効になっているときにツールチップを表示するには、ボタンで ToolTipService.ShowOnDisabled をTrueに設定する必要があります。ボタンに ToolTipService.IsEnabled をバインドして、ツールチップを有効または無効にすることができます。
これはボタンの完全なXAMLです(@Quartermeisterの回答に基づく)
<Button
x:Name="btnAdd"
Content="Add"
ToolTipService.ShowOnDisabled="True"
ToolTipService.IsEnabled="{Binding ElementName=btnAdd, Path=IsEnabled, Converter={StaticResource boolToOppositeBoolConverter}}"
ToolTip="Appointments cannot be added whilst the event has outstanding changes."/>
単純なトリガーを使用してそれを行うこともできます。次のコードをウィンドウに配置するだけです。
<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center">
<CheckBox Name="chkDisabler" Content="Enable / disable button" Margin="10" />
<Button Content="Hit me" Width="200" Height="100" IsEnabled="{Binding ElementName=chkDisabler, Path=IsChecked}">
<Button.Style>
<Style TargetType="{x:Type Button}">
<Setter Property="ToolTipService.ShowOnDisabled" Value="true" />
<Setter Property="ToolTip" Value="{x:Null}" />
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="ToolTip" Value="Hi, there! I'm disabled!" />
</Trigger>
</Style.Triggers>
</Style>
</Button.Style>
</Button>
</StackPanel>
デビッドワードが提案したものに対するわずかに修正された答え。これが完全なコードです
このようなリソースに値コンバーターを追加します
<Window.Resources>
<Converters:NegateConverter x:Key="negateConverter"/>
</Window.Resources>
次に、次のxamlを定義します
<Button
x:Name="btnAdd"
Content="Add"
ToolTipService.ShowOnDisabled="True"
ToolTipService.IsEnabled="{Binding RelativeSource={RelativeSource self}, Path=IsEnabled, Converter={StaticResource negateConverter}}"
ToolTip="Hi guys this is the tool tip"/>
値変換器は次のようになります
[ValueConversion(typeof(bool), typeof(bool))]
public class NegateConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return !((bool)value);
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}