ToolTipService.ToolTip Attached Property

Definition

Gets or sets the content of a tooltip.

see GetToolTip, and SetToolTip
see GetToolTip, and SetToolTip
see GetToolTip, and SetToolTip

Examples

The following example shows how to specify a tooltip by using the ToolTipService.

<Ellipse Fill="Blue" 
       ToolTipService.ToolTip="{DynamicResource EllipseToolTip}"
       Height="25" Width="40"/>

Remarks

Tooltip content can range from a simple text string to more complex objects such as a StackPanel element that has embedded controls and images. However, tooltip content cannot take focus. For example, a Button inside a tooltip cannot receive a Click event.

Windows Presentation Foundation (WPF) provides a ToolTip control that defines a tooltip and provides properties that you can use to specify tooltip behavior. However, a tooltip can be any element, such as a DockPanel or an Image.

This property is an attached property. For information about how to get or set the value of this property in code, see the GetToolTip and SetToolTip methods.

The XAML syntax shown here is appropriate if the object that fills the tooltip is a primitive with native type conversion, such as a string. If the object does not support native type conversion or support its own type converter, you might need to specify a verbose form of attached property syntax as follows:

<object>  
  <ToolTipService.ToolTip>  
    <objectThatFillsTheToolTip .../>  
  </ToolTipService.ToolTip>  
</object>  

The placeholder element objectThatFillsTheToolTip could also have child elements, if that object permits them. However, the need for this usage should be relatively rare, because most XAML usages will instead use practical control implementations of the service that are exposed by ToolTip.

Dependency Property Information

Identifier field ToolTipProperty
Metadata properties set to true None

Applies to

See also