如果文本框不为空,如何添加和显示工具提示文本框WPF

时间:2012-08-12 19:19:26

标签: c# wpf

需要显示提示,其中包含来自文本字段的数据。如果文本框中包含数据,则会提示出现。

4 个答案:

答案 0 :(得分:5)

只需使用绑定到ToolTipService附加属性即可。 XAML:

<UserControl.Resources>
    <converters:IsStringNonemptyConverter x:Key="ToolTipVisibilityConveter" />
</UserControl.Resources>

<TextBox Name="textBox" VerticalAlignment="Center" HorizontalAlignment="Center" Width="150"
         ToolTipService.ToolTip="{Binding Text, RelativeSource={RelativeSource Self}}"
         ToolTipService.IsEnabled="{Binding Text, RelativeSource={RelativeSource Self}, Converter={StaticResource ToolTipVisibilityConveter}}"/>

转换器:

internal sealed class IsStringNonemptyConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return !String.IsNullOrEmpty(value as string);
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

答案 1 :(得分:3)

您可以使用触发器禁用工具提示。将此样式放在窗口或应用程序资源中,以便根据您的选择在窗口或应用程序中的所有文本框中共享它 -

<Style x:Key="{x:Type TextBox}" TargetType="TextBox">
  <Style.Triggers>
     <Trigger Property="ToolTip" Value="{x:Static sys:String.Empty}">
        <Setter Property="ToolTipService.IsEnabled" Value="False" />
      </Trigger>
</Style.Triggers>

确保将系统命名空间添加到xaml -

xmlns:sys="clr-namespace:System;assembly=mscorlib"

答案 2 :(得分:1)

我自己遇到了这个问题并想出了一个不同的解决方案。我知道这个问题已得到解答,但就像我一样,仍会有人遇到这个问题,我想分享我的解决方案:

<强> XAML

<TextBox Name="textBox1" ToolTip="{Binding Text, RelativeSource={RelativeSource Self}}" ToolTipService.IsEnabled="False"/>

代码

private void textBox1_TextChanged(object sender, TextChangedEventArgs e)
{
    if (textBox1.Text.Length > 0)
    {
        ToolTipService.SetIsEnabled(textBox1, true);
    }
}

我希望这有助于某人。

答案 3 :(得分:0)

我尝试使用可见性模式&amp; TextChange事件。没有文字时,工具提示不可见。对其他人可能有用。 XAML:

    <TextBox Height="23" Width="100" Name="myTextBox" TextChanged="myTextBox_TextChanged" >
        <TextBox.ToolTip>
            <ToolTip Visibility="Hidden">
                <TextBlock Name="toolTipTextBlock"></TextBlock>
            </ToolTip>            
        </TextBox.ToolTip>
    </TextBox>

TextChange事件处理程序:

    private void myTextBox_TextChanged(object sender, TextChangedEventArgs e)
    {
        TextBox tb = sender as TextBox;

        if (tb.Text.Trim() == "")
        {
            ((ToolTip)tb.ToolTip).Visibility = Visibility.Hidden;
        }
        else
        {
            toolTipTextBlock.Text = tb.Text;
            ((ToolTip)tb.ToolTip).Visibility = Visibility.Visible;
        }
    }