Hi, Im my tab control i want to set tooltip for all tab neaders. I coded like below
<TabItem.ToolTip>
<StackPanel Height="40" Width="70" Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="center" >
<Image VerticalAlignment="Top" Width="30" Height="10" Source="Image\TAB2.png" Name="image2" />
<TextBlock FontFamily="Aharoni" FontSize="11" Foreground="Black" TextWrapping="Wrap" VerticalAlignment="Top" Height="30" HorizontalAlignment="Right" Width="70" Text="Name Window" />
</StackPanel>
</TabItem.ToolTip>
But the tolltip appears not only in header but in all tab page. I want to display the tooltip only on the mouse over on the tab header.