IntroductionWhenever you mouse hover onto a particular control in run time, you have an area where you can display some information. This is achieved by using the ToolTip. Now the default styling of ToolTip is very common. So in this article we will be seeing how can we change the styling of a ToolTip in Silverlight 3 of course in Blend 3.Creating the Silverlight ProjectFire up Blend 3 and create a Silverlight 3 Project. We will start styling a ToolTip for an Image Control.
<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.
<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>