Go the XAML code behind and add a ToolTipService.ToolTip tag. Add an Image control and assign the Source Value.
The XAML will look similar to the following:
<Image HorizontalAlignment="Left" Margin="8,11,0,10" Width="40" Grid.Row="1" Height="50" Source="Images/003.jpg">
<ToolTipService.ToolTip>
<Image Source="Images/003.jpg"/>
</ToolTipService.ToolTip>
</Image>
<Image Height="50" HorizontalAlignment="Left" Margin="52,11,0,10" Width="40" Grid.Row="1" Source="Images/008.jpg">
<ToolTipService.ToolTip>
<Image Source="Images/008.jpg"/>
</ToolTipService.ToolTip>
</Image>
<Image Height="50" HorizontalAlignment="Left" Margin="96,11,0,10" Width="40" Grid.Row="1" Source="Images/009.jpg">
<ToolTipService.ToolTip>
<Image Source="Images/009.jpg"/>
</ToolTipService.ToolTip>
</Image>
Now press F5 and see your application running in browser. Now Mouse Hover to the particular images and you will see the real size of the Image. This is cool right. Now we will see some other styles.
Go to XAML code behind and find the TextBox. Add the following code to style the ToolTip.
<ToolTipService.ToolTip>
<ToolTip Content="Search Your Movies">
<ToolTip.Background>
<LinearGradientBrush StartPoint="0,1" EndPoint="0,0">
<GradientStop Color="ForestGreen" Offset="0.8"/>
<GradientStop Color="White" Offset="0"/>
</LinearGradientBrush>
</ToolTip.Background>
</ToolTip>
</ToolTipService.ToolTip>