feat: 13-几何图形和图画-4使用PathGeometry
This commit is contained in:
parent
069c6f6bf1
commit
6e2b67cbe0
|
@ -0,0 +1,19 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||||||
|
<RootNamespace>_13_几何图形和图画_4使用PathGeometry</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="_13_几何图形和图画_4使用PathGeometry.App"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:local="clr-namespace:_13_几何图形和图画_4使用PathGeometry"
|
||||||
|
StartupUri="MainWindow.xaml">
|
||||||
|
<Application.Resources>
|
||||||
|
|
||||||
|
</Application.Resources>
|
||||||
|
</Application>
|
|
@ -0,0 +1,12 @@
|
||||||
|
using System.Configuration;
|
||||||
|
using System.Data;
|
||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
namespace _13_几何图形和图画_4使用PathGeometry;
|
||||||
|
|
||||||
|
/// <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,55 @@
|
||||||
|
<Window x:Class="_13_几何图形和图画_4使用PathGeometry.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="13-几何图形和图画-4使用PathGeometry" Height="800" Width="800">
|
||||||
|
<StackPanel>
|
||||||
|
<Label>没有自动填充</Label>
|
||||||
|
<Path Stroke="Blue">
|
||||||
|
<Path.Data>
|
||||||
|
<PathGeometry>
|
||||||
|
<PathFigure IsClosed="True" IsFilled="False" StartPoint="10,100">
|
||||||
|
<LineSegment Point="100,100" />
|
||||||
|
<LineSegment Point="100,50" />
|
||||||
|
</PathFigure>
|
||||||
|
</PathGeometry>
|
||||||
|
</Path.Data>
|
||||||
|
</Path>
|
||||||
|
|
||||||
|
<Label>包含自动填充</Label>
|
||||||
|
<Path Fill="BlueViolet" Stroke="Blue">
|
||||||
|
<Path.Data>
|
||||||
|
<PathGeometry>
|
||||||
|
<PathFigure IsClosed="True" IsFilled="True" StartPoint="10,100">
|
||||||
|
<LineSegment Point="100,100" />
|
||||||
|
<LineSegment Point="100,50" />
|
||||||
|
</PathFigure>
|
||||||
|
</PathGeometry>
|
||||||
|
</Path.Data>
|
||||||
|
</Path>
|
||||||
|
|
||||||
|
<Label>绘制弧线-没有自动填充</Label>
|
||||||
|
<Path Fill="SlateBlue" Stroke="Blue">
|
||||||
|
<Path.Data>
|
||||||
|
<PathGeometry>
|
||||||
|
<PathFigure IsClosed="False" IsFilled="False" StartPoint="10,100">
|
||||||
|
<ArcSegment Point="250,150" Size="200,300" />
|
||||||
|
</PathFigure>
|
||||||
|
</PathGeometry>
|
||||||
|
</Path.Data>
|
||||||
|
</Path>
|
||||||
|
|
||||||
|
<Label>绘制弧线-自动填充</Label>
|
||||||
|
<Path Fill="SlateBlue" Stroke="Blue">
|
||||||
|
<Path.Data>
|
||||||
|
<PathGeometry>
|
||||||
|
<PathFigure IsClosed="False" IsFilled="True" StartPoint="10,100">
|
||||||
|
<ArcSegment Point="250,150" Size="200,300" />
|
||||||
|
</PathFigure>
|
||||||
|
</PathGeometry>
|
||||||
|
</Path.Data>
|
||||||
|
</Path>
|
||||||
|
</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 _13_几何图形和图画_4使用PathGeometry;
|
||||||
|
|
||||||
|
/// <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 |
|
@ -54,6 +54,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-2
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-3使用CombinedGeometry", "13-几何图形和图画-3使用CombinedGeometry\13-几何图形和图画-3使用CombinedGeometry.csproj", "{7E79F58B-CFB3-41BF-A692-6E83F88881EE}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-3使用CombinedGeometry", "13-几何图形和图画-3使用CombinedGeometry\13-几何图形和图画-3使用CombinedGeometry.csproj", "{7E79F58B-CFB3-41BF-A692-6E83F88881EE}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-4使用PathGeometry", "13-几何图形和图画-4使用PathGeometry\13-几何图形和图画-4使用PathGeometry.csproj", "{2411C34B-376E-4185-BC14-F0C13A3E84D4}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
@ -168,5 +170,9 @@ Global
|
||||||
{7E79F58B-CFB3-41BF-A692-6E83F88881EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{7E79F58B-CFB3-41BF-A692-6E83F88881EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{7E79F58B-CFB3-41BF-A692-6E83F88881EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{7E79F58B-CFB3-41BF-A692-6E83F88881EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{7E79F58B-CFB3-41BF-A692-6E83F88881EE}.Release|Any CPU.Build.0 = Release|Any CPU
|
{7E79F58B-CFB3-41BF-A692-6E83F88881EE}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{2411C34B-376E-4185-BC14-F0C13A3E84D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{2411C34B-376E-4185-BC14-F0C13A3E84D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{2411C34B-376E-4185-BC14-F0C13A3E84D4}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{2411C34B-376E-4185-BC14-F0C13A3E84D4}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
Loading…
Reference in New Issue