FrameworkElement.ToolTip Property
Gets or sets the tool-tip object that is displayed for this element in the user interface (UI).
Namespace: System.Windows
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
[BindableAttribute(true)] [LocalizabilityAttribute(LocalizationCategory.ToolTip)] public Object ToolTip { get; set; }
<object> <object.ToolTip> <ToolTip .../> </object.ToolTip> </object> - or - <object> <object.ToolTip> toolTipObjectContent </object.ToolTip> </object>
<object ToolTip="toolTipContent"/>
XAML Values
Property Value
Type: System.ObjectThe tooltip object. See Remarks below for details on why this parameter is not strongly typed.
If the value of this property is of type ToolTip, then that value is the tool-tip that will be used in the UI. If the value is of any other type, then that value will be used as the content for a ToolTip provided (constructed) by the system. For more information, see ToolTipService. The service class provides attached properties that can be used to further customize a ToolTip.
The following example creates a ToolTip in code and then sets the ToolTip property on a StatusBar control.
private void MakeProgressBar(object sender, RoutedEventArgs e) { sbar.Items.Clear(); TextBlock txtb = new TextBlock(); txtb.Text = "Progress of download."; sbar.Items.Add(txtb); ProgressBar progressbar = new ProgressBar(); progressbar.Width = 100; progressbar.Height = 20; Duration duration = new Duration(TimeSpan.FromSeconds(5)); DoubleAnimation doubleanimation = new DoubleAnimation(100.0, duration); progressbar.BeginAnimation(ProgressBar.ValueProperty, doubleanimation); ToolTip ttprogbar = new ToolTip(); ttprogbar.Content = "Shows the progress of a download."; progressbar.ToolTip = (ttprogbar); sbar.Items.Add(progressbar); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.