feat: 12-形状画刷和变换-21透明掩码形成倒影效果
This commit is contained in:
parent
bcc16c6ce4
commit
c35fafb88e
|
@ -0,0 +1,19 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||||||
|
<RootNamespace>_12_形状画刷和变换_21透明掩码形成倒影效果</RootNamespace>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<UseWPF>true</UseWPF>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="public\003540AH4M72.jpg">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="public\bunny.png"/>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
|
@ -0,0 +1,9 @@
|
||||||
|
<Application x:Class="_12_形状画刷和变换_21透明掩码形成倒影效果.App"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:local="clr-namespace:_12_形状画刷和变换_21透明掩码形成倒影效果"
|
||||||
|
StartupUri="MainWindow.xaml">
|
||||||
|
<Application.Resources>
|
||||||
|
|
||||||
|
</Application.Resources>
|
||||||
|
</Application>
|
|
@ -0,0 +1,12 @@
|
||||||
|
using System.Configuration;
|
||||||
|
using System.Data;
|
||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
namespace _12_形状画刷和变换_21透明掩码形成倒影效果;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for App.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class App : Application
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
[assembly: ThemeInfo(
|
||||||
|
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
||||||
|
//(used if a resource is not found in the page,
|
||||||
|
// or application resource dictionaries)
|
||||||
|
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
|
||||||
|
//(used if a resource is not found in the page,
|
||||||
|
// app, or any theme specific resource dictionaries)
|
||||||
|
)]
|
|
@ -0,0 +1,32 @@
|
||||||
|
<Window x:Class="_12_形状画刷和变换_21透明掩码形成倒影效果.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="12-形状画刷和变换-21透明掩码形成倒影效果" Height="450" Width="800">
|
||||||
|
<StackPanel>
|
||||||
|
<StackPanel.Background>
|
||||||
|
<ImageBrush ImageSource="public/003540AH4M72.jpg" />
|
||||||
|
</StackPanel.Background>
|
||||||
|
|
||||||
|
|
||||||
|
<TextBlock Name="TextBlockTxt" FontSize="40">12-形状画刷和变换-21透明掩码形成倒影效果</TextBlock>
|
||||||
|
<Rectangle Margin="0 50 0 0" Height="50" RenderTransformOrigin="1,0">
|
||||||
|
<Rectangle.Fill>
|
||||||
|
<VisualBrush Visual="{Binding ElementName=TextBlockTxt}" />
|
||||||
|
</Rectangle.Fill>
|
||||||
|
|
||||||
|
<Rectangle.OpacityMask>
|
||||||
|
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
||||||
|
<GradientStop Offset="0" Color="Transparent" />
|
||||||
|
<GradientStop Offset="1" Color="Red" />
|
||||||
|
</LinearGradientBrush>
|
||||||
|
</Rectangle.OpacityMask>
|
||||||
|
|
||||||
|
<Rectangle.RenderTransform>
|
||||||
|
<ScaleTransform ScaleY="-1" />
|
||||||
|
</Rectangle.RenderTransform>
|
||||||
|
</Rectangle>
|
||||||
|
</StackPanel>
|
||||||
|
</Window>
|
|
@ -0,0 +1,23 @@
|
||||||
|
using System.Text;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
|
||||||
|
namespace _12_形状画刷和变换_21透明掩码形成倒影效果;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for MainWindow.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class MainWindow : Window
|
||||||
|
{
|
||||||
|
public MainWindow()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 97 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
|
@ -46,6 +46,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-19
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-20透明掩码", "12-形状画刷和变换-20透明掩码\12-形状画刷和变换-20透明掩码.csproj", "{26397700-1606-4E3D-A2E9-3E2CCF9662C9}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-20透明掩码", "12-形状画刷和变换-20透明掩码\12-形状画刷和变换-20透明掩码.csproj", "{26397700-1606-4E3D-A2E9-3E2CCF9662C9}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-21透明掩码形成倒影效果", "12-形状画刷和变换-21透明掩码形成倒影效果\12-形状画刷和变换-21透明掩码形成倒影效果.csproj", "{1966B41A-7080-4C83-9762-2FF6CEDC8500}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
@ -144,5 +146,9 @@ Global
|
||||||
{26397700-1606-4E3D-A2E9-3E2CCF9662C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{26397700-1606-4E3D-A2E9-3E2CCF9662C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{26397700-1606-4E3D-A2E9-3E2CCF9662C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{26397700-1606-4E3D-A2E9-3E2CCF9662C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{26397700-1606-4E3D-A2E9-3E2CCF9662C9}.Release|Any CPU.Build.0 = Release|Any CPU
|
{26397700-1606-4E3D-A2E9-3E2CCF9662C9}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{1966B41A-7080-4C83-9762-2FF6CEDC8500}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{1966B41A-7080-4C83-9762-2FF6CEDC8500}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{1966B41A-7080-4C83-9762-2FF6CEDC8500}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{1966B41A-7080-4C83-9762-2FF6CEDC8500}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
Loading…
Reference in New Issue