I need to use the ToolTip on a label inside a 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>
this xaml file is used to be a child inside a frame contained in another xaml file
<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>
i embedded the page xaml file inside the frame using
MyClass myClass= new MyClass();
frame1.Navigate(myClass);
if i moved the label with the ToolTip from the page xaml file to the window xaml file the ToolTip work but when use it inside the page xaml file it doesn't work.
what is missing here to make it work inside the page xaml file