选项卡标题中选项卡控件的工具提示
我的选项卡控件我想为所有选项卡标题设置工具提示。 我的编码如下,
<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>
但收费提示不仅出现在标题中,而且出现在所有选项卡页面中。 我只想在鼠标悬停在选项卡标题上时显示工具提示。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将工具提示放在 TabItem.Header 上
Put the ToolTip on your TabItem.Header