Tooltip represents a control that creates a pop-up window that displays information for an element in the UI

Step 1: Open a blank app and add a Button and TextBlock with ToolTip control either from the toolbox or by copying the following XAML code into your grid.
  1. <Button Content="Hover over the Button" ToolTipService.ToolTip="Sample ToolTip" />
  2. <TextBlock Text="TextBlock with a ToolTip.">
  3. <ToolTipService.ToolTip>
  4. <ToolTip Content="Sample ToolTip." />
  5. </ToolTipService.ToolTip>
  6. </TextBlock>

Step 2: Run your application and check yourself.