4-Graphics_Animation/14-效果和可视化对象-2效果338P/MainWindow.xaml

15 lines
716 B
Plaintext
Raw Permalink Normal View History

<Window x:Class="_14_效果和可视化对象_2效果338P.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-效果和可视化对象-2效果 P338" Height="450" Width="800">
<StackPanel>
<Button Content="圆角2" Padding="5" Margin="3">
<Button.Effect>
<BlurEffect Radius="2" />
</Button.Effect>
</Button>
</StackPanel>
</Window>