--- title: "How to: Use the BetweenShowDelay Property" ms.date: "03/30/2017" helpviewer_keywords: - "ToolTip control [WPF], BetweenShowDelay time property" - "BetweenShowDelay time property [WPF]" ms.assetid: 984ea76d-f2a2-4326-a02e-f97ec3d036d6 --- # How to: Use the BetweenShowDelay Property This example shows how to use the time property so that tooltips appear quickly—with little or no delay—when a user moves the mouse pointer from one tooltip directly to another. ## Example In the following example, the property is set to one second (1000 milliseconds) and the is set to two seconds (2000 milliseconds) for the tooltips of both controls. If you display the tooltip for one of the ellipses and then move the mouse pointer to another ellipse within two seconds and pause on it, the tooltip of the second ellipse displays immediately. In either of the following scenarios, the applies, which causes the tooltip for the second ellipse to wait one second before it appears: - If the time it takes to move to the second button is more than two seconds. - If the tooltip is not visible at the beginning of the time interval for the first ellipse. [!code-xaml[ToolTipService#ToolTip](~/samples/snippets/csharp/VS_Snippets_Wpf/ToolTipService/CSharp/Pane1.xaml#tooltip)] [!code-xaml[ToolTipService#NoToolTip](~/samples/snippets/csharp/VS_Snippets_Wpf/ToolTipService/CSharp/Pane1.xaml#notooltip)] ## See also - - - [How-to Topics](tooltip-how-to-topics.md) - [ToolTip Overview](tooltip-overview.md)