4-Graphics_Animation/14-效果和可视化对象-3DropShadowEffe.../MainWindow.xaml

40 lines
1.7 KiB
XML

<Window x:Class="_14_效果和可视化对象_3DropShadowEffect_P339.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"
mc:Ignorable="d"
Icon="public/003540AH4M72.jpg" Title="14-效果和可视化对象-3DropShadowEffect-P339" Height="450" Width="800">
<StackPanel>
<TextBlock FontSize="20" Margin="5">
<TextBlock.Effect>
<DropShadowEffect />
</TextBlock.Effect>
<TextBlock.Text>14-效果和可视化对象-3DropShadowEffect-P339</TextBlock.Text>
</TextBlock>
<TextBlock FontSize="20" Margin="5">
<TextBlock.Effect>
<DropShadowEffect Color="SlateBlue" />
</TextBlock.Effect>
<TextBlock.Text>14-效果和可视化对象-3DropShadowEffect-P339</TextBlock.Text>
</TextBlock>
<TextBlock FontSize="20" Foreground="White" Margin="5">
<TextBlock.Effect>
<DropShadowEffect ShadowDepth="0" />
</TextBlock.Effect>
<TextBlock.Text>14-效果和可视化对象-3DropShadowEffect-P339</TextBlock.Text>
</TextBlock>
<TextBlock FontSize="20" Foreground="LimeGreen" Margin="5">
<TextBlock.Effect>
<DropShadowEffect ShadowDepth="25" />
</TextBlock.Effect>
<TextBlock.Text>14-效果和可视化对象-3DropShadowEffect-P339</TextBlock.Text>
</TextBlock>
</StackPanel>
</Window>