I am theming a TreeView for Windows 8. I want the tool-tip to have a drop shadow effect. I tried using the internal SystemDropShadowChrome control, using two borders in a grid and a rectangle and a border in a grid and I cannot get anywhere. It always ends up applying the shadow to the content presenter.
<ToolTip Placement="RelativePoint" VerticalOffset="-2"
HorizontalOffset="-1" Foreground="Black"
VerticalAlignment="Center"
Content="{Binding RelativeSource={RelativeSource Self}, Path=PlacementTarget.Content}"
Style="{x:Null}">
<ToolTip.Template>
<ControlTemplate TargetType="{x:Type ToolTip}">
<Grid>
<Rectangle Stroke="#767676" StrokeThickness="1" Height="20">
<Rectangle.Effect>
<DropShadowEffect />
</Rectangle.Effect>
</Rectangle>
<Border BorderThickness="1"
Background="Transparent"
BorderBrush="Transparent"
Padding="0,1,3,1" CornerRadius="0">
<ContentPresenter
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
</Border>
</Grid>
</ControlTemplate>
</ToolTip.Template>
</ToolTip>
That is my last attempt. Changing the background and border to a solid color just hides the shadow.