Mega Code Archive

 
Categories / C# / WPF
 

ToolTipService InitialShowDelay

<Window x:Class="ClassicControls.Tooltips"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     Title="Tooltips" Height="321" Width="301"   >   <StackPanel Margin="5" ToolTip="StackPanel tooltip">     <Button ToolTip="This is my tooltip" ToolTipService.InitialShowDelay="5000">I have a tooltip</Button>        </StackPanel>               </Window>