设置HasDropShadow对WPF工具提示没有影响

时间:2017-07-15 02:27:21

标签: c# .net wpf

在工具提示上设置HasDropShadow似乎没有任何效果。我在Windows 10上使用Dev Studio 2015.我尝试粘贴Paint中的屏幕截图并放大它,我看不到任何阴影效果。我检查了SystemParameters.DropShadow的值,这是真的。

<Window x:Class="WpfApplication5.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApplication5"
        mc:Ignorable="d"
        Title="MainWindow" Height="222.911" Width="412.032">
    <Grid>
        <TextBlock Text="Hover the mouse over me" Margin="10,10,229.6,156.6">
            <TextBlock.ToolTip>
                <ToolTip HasDropShadow="True">Iam a tool tip</ToolTip>
            </TextBlock.ToolTip>
        </TextBlock>
    </Grid>
</Window>

enter image description here

0 个答案:

没有答案