I can't seem to find the right DataContext for the Grid in the ToolTipStyle Style. Just a blank ToolTip appears.
<Window.Resources>
<DataTemplate x:Key="ListTemplate">
<StackPanel>
<Grid>
<TextBlock Text="{Binding Path=Name}">
<TextBlock.ToolTip>
<ToolTip Style="{StaticResource ToolTipStyle}" />
</TextBlock.ToolTip>
</TextBlock>
</Grid>
</StackPanel>
</DataTemplate>
<Style TargetType="ToolTip" x:Key="ToolTipStyle">
<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate>
<Grid>
<TextBlock Text="{Binding Path=Description}" />
</Grid>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
</Windows.Resources>
<ListBox ItemTemplate="{StaticResource ListTemplate}" />
Tooltips /Popups seem to exist outside of the visual tree. I see a lot of people bind to the PlacementTarget property to get back.