4-Graphics_Animation/15-动画基础-1修改按钮动画-P354/MainWindow.xaml

17 lines
976 B
XML

<Window x:Class="_15_动画基础_1修改按钮动画_P354.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="15-动画基础-1修改按钮动画-P354" Height="450" Width="800">
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<Button Name="ButtonAnimation" Click="ButtonAnimation_OnClick" >
<Button.Effect>
<DropShadowEffect BlurRadius="2" Color="Red" Direction="-20" Opacity="0.7" RenderingBias="Quality"
ShadowDepth="10" />
</Button.Effect>
<Button.Content>ButtonAnimation</Button.Content>
</Button>
</StackPanel>
</Window>