框架内页面内的工具提示

时间:2013-10-29 22:57:12

标签: c# wpf silverlight

我需要在 xaml

内的标签上使用工具提示
<Page x:Class="xxx.xxx"
          xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
          xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
          xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
          xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
          mc:Ignorable="d" 
          d:DesignHeight="464" d:DesignWidth="628"
        Title="ManagementDetails" Loaded="Page_Loaded">

        <Grid>  
            <Label Margin="0,360,376,91" >
                <ToolTipService.ToolTip>
                      <ToolTip Content="Turtle" />         
                </ToolTipService.ToolTip>
            </Label> 
         </Grid>
    </Page>

xaml 文件用作其他 xaml 文件中包含的框架内的子项

<Window x:Class="xxx.xxxxxx"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="ViewProject" Height="626" Width="810" >
    <Grid  Height="600" Width="800">
        <Frame Margin="172,136,0,0" Name="frame1" />
    </Grid>
</Window>

我使用

页面xaml 文件嵌入框架
 MyClass myClass= new MyClass();
frame1.Navigate(myClass);

如果我使用工具提示标签页面xaml 文件移动到窗口xaml 文件工具提示有效,但在页面xaml 文件中使用时,它无效。

这里缺少什么使它在页面xaml文件中工作

3 个答案:

答案 0 :(得分:0)

你为什么这样做?!?

做一些像:

<Label Name="Some_Label" ToolTip="Turtle"> Fun with labels ...</Label>

完成。应该在另一个或其自身内部工作。

答案 1 :(得分:0)

使用工具提示控件:

ToolTipService类必须与ToolTip控件一起使用才能显示我们控件的工具提示。对于示例,我将使用图像控件,但以下内容可应用于每个控件。这是代码:

 <Image Source="GiantSeaTurtle.jpg" Width="400" Height="300">
      <ToolTipService.ToolTip>
        <ToolTip Content="Turtle"></ToolTip>
      </ToolTipService.ToolTip>
    </Image>

答案 2 :(得分:0)

感谢大家的所有答案,这似乎是我的错,感到惭愧,我有同一页面的重复xaml文件,我正在编辑一个并查看另一个。很抱歉给您带来不便,再次感谢您的帮助。