Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.