选项卡标题中选项卡控件的工具提示

发布于 2024-08-19 14:13:17 字数 611 浏览 5 评论 0原文

我的选项卡控件我想为所有选项卡标题设置工具提示。 我的编码如下,

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情愿 2024-08-26 14:13:17

将工具提示放在 TabItem.Header 上

<TabItem>
    <TabItem.Header>
        <Grid>
            <Grid.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>
            </Grid.ToolTip>

            <TextBlock Text="Header" />
        </Grid>
    </TabItem.Header>

    <TextBlock Text="Tab Content" />
</TabItem>

Put the ToolTip on your TabItem.Header

<TabItem>
    <TabItem.Header>
        <Grid>
            <Grid.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>
            </Grid.ToolTip>

            <TextBlock Text="Header" />
        </Grid>
    </TabItem.Header>

    <TextBlock Text="Tab Content" />
</TabItem>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文