feat: 13-几何图形和图画-7使用几何图形进行裁剪

This commit is contained in:
Bunny 2025-01-18 22:29:34 +08:00
parent a8e247cd6c
commit 22078f21c6
9 changed files with 116 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>_13_几何图形和图画_7使用几何图形进行裁剪</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<Resource Include="public\003540AH4M72.jpg"/>
<Resource Include="public\bunny.png"/>
</ItemGroup>
</Project>

View File

@ -0,0 +1,9 @@
<Application x:Class="_13_几何图形和图画_7使用几何图形进行裁剪.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:_13_几何图形和图画_7使用几何图形进行裁剪"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@ -0,0 +1,12 @@
using System.Configuration;
using System.Data;
using System.Windows;
namespace _13_几何图形和图画_7使用几何图形进行裁剪;
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}

View File

@ -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)
)]

View File

@ -0,0 +1,39 @@
<Window x:Class="_13_几何图形和图画_7使用几何图形进行裁剪.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="13-几何图形和图画-7使用几何图形进行裁剪" Height="800" Width="800">
<Window.Resources>
<GeometryGroup x:Key="GeometryGroupResource1" FillRule="Nonzero">
<EllipseGeometry RadiusX="75" RadiusY="50" Center="100,150" />
<EllipseGeometry RadiusX="100" RadiusY="25" Center="200,150" />
<EllipseGeometry RadiusX="75" RadiusY="130" Center="140,140" />
</GeometryGroup>
<GeometryGroup x:Key="GeometryGroupResource2" FillRule="EvenOdd">
<EllipseGeometry RadiusX="75" RadiusY="50" Center="100,150" />
<EllipseGeometry RadiusX="100" RadiusY="25" Center="200,150" />
<EllipseGeometry RadiusX="75" RadiusY="130" Center="140,140" />
</GeometryGroup>
</Window.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Button Grid.Row="0" Grid.Column="0" Clip="{StaticResource GeometryGroupResource1}">GeometryGroupResource</Button>
<Image Grid.Row="0" Grid.Column="1" Clip="{StaticResource GeometryGroupResource1}" Stretch="None"
Source="public/bunny.png" />
<Button Grid.Row="1" Grid.Column="0" Clip="{StaticResource GeometryGroupResource2}">GeometryGroupResource</Button>
<Image Grid.Row="1" Grid.Column="1" Clip="{StaticResource GeometryGroupResource2}" Stretch="None"
Source="public/003540AH4M72.jpg" />
</Grid>
</Window>

View File

@ -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 _13_几何图形和图画_7使用几何图形进行裁剪;
/// <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

View File

@ -60,6 +60,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-5
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-6微语言集合图形", "13-几何图形和图画-6微语言集合图形\13-几何图形和图画-6微语言集合图形.csproj", "{4CFBCCD1-D0BD-4899-98ED-4ADB26233594}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-6微语言集合图形", "13-几何图形和图画-6微语言集合图形\13-几何图形和图画-6微语言集合图形.csproj", "{4CFBCCD1-D0BD-4899-98ED-4ADB26233594}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-7使用几何图形进行裁剪", "13-几何图形和图画-7使用几何图形进行裁剪\13-几何图形和图画-7使用几何图形进行裁剪.csproj", "{31E14753-107A-4109-B7A9-360AC8E0FAEC}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@ -186,5 +188,9 @@ Global
{4CFBCCD1-D0BD-4899-98ED-4ADB26233594}.Debug|Any CPU.Build.0 = Debug|Any CPU {4CFBCCD1-D0BD-4899-98ED-4ADB26233594}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4CFBCCD1-D0BD-4899-98ED-4ADB26233594}.Release|Any CPU.ActiveCfg = Release|Any CPU {4CFBCCD1-D0BD-4899-98ED-4ADB26233594}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4CFBCCD1-D0BD-4899-98ED-4ADB26233594}.Release|Any CPU.Build.0 = Release|Any CPU {4CFBCCD1-D0BD-4899-98ED-4ADB26233594}.Release|Any CPU.Build.0 = Release|Any CPU
{31E14753-107A-4109-B7A9-360AC8E0FAEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{31E14753-107A-4109-B7A9-360AC8E0FAEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{31E14753-107A-4109-B7A9-360AC8E0FAEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{31E14753-107A-4109-B7A9-360AC8E0FAEC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
EndGlobal EndGlobal