24 lines
1.1 KiB
Plaintext
24 lines
1.1 KiB
Plaintext
|
<Window x:Class="_12_形状画刷和变换_20透明掩码.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/bunny.png" Title="12-形状画刷和变换-20透明掩码" Height="450" Width="800">
|
||
|
<DockPanel>
|
||
|
<DockPanel.Background>
|
||
|
<ImageBrush ImageSource="public/003540AH4M72.jpg" />
|
||
|
</DockPanel.Background>
|
||
|
|
||
|
<Button Margin="10" FontSize="14" FontWeight="Bold" Height="300" VerticalAlignment="Center">
|
||
|
<Button.OpacityMask>
|
||
|
<LinearGradientBrush StartPoint="0,0" EndPoint="1,0">
|
||
|
<GradientStop Offset="0" Color="SkyBlue" />
|
||
|
<GradientStop Offset="1" Color="Transparent" />
|
||
|
</LinearGradientBrush>
|
||
|
</Button.OpacityMask>
|
||
|
|
||
|
<Button.Content>哈哈哈 </Button.Content>
|
||
|
</Button>
|
||
|
</DockPanel>
|
||
|
</Window>
|