feat: 12-形状画刷和变换-6直线线帽和直线交点
This commit is contained in:
parent
dc690c1edd
commit
8f45b96bfd
|
@ -0,0 +1,18 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net8.0-windows</TargetFramework>
|
||||
<RootNamespace>_12_形状画刷和变换_6直线线帽和直线交点</RootNamespace>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<UseWPF>true</UseWPF>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Resource Include="public\003540AH4M72.jpg">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Resource>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
|
@ -0,0 +1,9 @@
|
|||
<Application x:Class="_12_形状画刷和变换_6直线线帽和直线交点.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="clr-namespace:_12_形状画刷和变换_6直线线帽和直线交点"
|
||||
StartupUri="MainWindow.xaml">
|
||||
<Application.Resources>
|
||||
|
||||
</Application.Resources>
|
||||
</Application>
|
|
@ -0,0 +1,12 @@
|
|||
using System.Configuration;
|
||||
using System.Data;
|
||||
using System.Windows;
|
||||
|
||||
namespace _12_形状画刷和变换_6直线线帽和直线交点;
|
||||
|
||||
/// <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,65 @@
|
|||
<Window x:Class="_12_形状画刷和变换_6直线线帽和直线交点.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-形状画刷和变换-6直线线帽和直线交点" Height="450" Width="800">
|
||||
<ScrollViewer Margin="10">
|
||||
<Canvas Height="1600" Width="800">
|
||||
<StackPanel Canvas.Left="10" Canvas.Top="0">
|
||||
<Label>StrokeStartLineCap="Flat" StrokeEndLineCap="Flat"</Label>
|
||||
<Polyline Stroke="Red" StrokeThickness="5"
|
||||
Points="0,0 10,110 20,50 30,110 200,110" StrokeStartLineCap="Flat" StrokeEndLineCap="Flat" />
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Canvas.Left="10" Canvas.Top="140">
|
||||
<Label> StrokeStartLineCap="Round" StrokeEndLineCap="Round"</Label>
|
||||
<Polyline Stroke="Green" StrokeThickness="5"
|
||||
Points="0,0 10,110 20,50 30,110 200,110" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Canvas.Left="10" Canvas.Top="280">
|
||||
<Label>StrokeStartLineCap="Square" StrokeEndLineCap="Square" </Label>
|
||||
<Polyline Stroke="Blue" StrokeThickness="5"
|
||||
Points="0,0 10,110 20,50 30,110 200,110" StrokeStartLineCap="Square"
|
||||
StrokeEndLineCap="Square" />
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Canvas.Left="10" Canvas.Top="420">
|
||||
<Label>StrokeStartLineCap="Triangle" StrokeEndLineCap="Triangle" </Label>
|
||||
<Polyline Stroke="Coral" StrokeThickness="5"
|
||||
Points="0,0 10,110 20,50 30,110 200,110" StrokeStartLineCap="Triangle"
|
||||
StrokeEndLineCap="Triangle" />
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Canvas.Left="10" Canvas.Top="560">
|
||||
<Label>StrokeStartLineCap="Triangle" StrokeEndLineCap="Triangle" StrokeLineJoin="Bevel"</Label>
|
||||
<Polyline Stroke="Chartreuse" StrokeThickness="5"
|
||||
Points="0,0 10,110 20,50 30,110 200,110" StrokeStartLineCap="Triangle"
|
||||
StrokeEndLineCap="Triangle" StrokeLineJoin="Bevel" />
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Canvas.Left="10" Canvas.Top="700">
|
||||
<Label>StrokeStartLineCap="Triangle" StrokeEndLineCap="Triangle" StrokeLineJoin="Miter"</Label>
|
||||
<Polyline Stroke="Brown" StrokeThickness="5"
|
||||
Points="0,0 10,110 20,50 30,110 200,110" StrokeStartLineCap="Triangle"
|
||||
StrokeEndLineCap="Triangle" StrokeLineJoin="Miter" />
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Canvas.Left="10" Canvas.Top="840">
|
||||
<Label>StrokeStartLineCap="Triangle" StrokeEndLineCap="Triangle" StrokeLineJoin="Round"</Label>
|
||||
<Polyline Stroke="Fuchsia" StrokeThickness="5"
|
||||
Points="0,0 10,110 20,50 30,110 200,110" StrokeStartLineCap="Triangle"
|
||||
StrokeEndLineCap="Triangle" StrokeLineJoin="Round" />
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Canvas.Left="10" Canvas.Top="980">
|
||||
<Label>StrokeStartLineCap="Triangle" StrokeEndLineCap="Triangle" StrokeLineJoin="Round" StrokeMiterLimit="1"</Label>
|
||||
<Polyline Stroke="Gold" StrokeThickness="5"
|
||||
Points="0,0 10,110 20,50 30,110 200,110" StrokeStartLineCap="Triangle"
|
||||
StrokeEndLineCap="Triangle" StrokeLineJoin="Round" StrokeMiterLimit="1" />
|
||||
</StackPanel>
|
||||
</Canvas>
|
||||
</ScrollViewer>
|
||||
</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_形状画刷和变换_6直线线帽和直线交点;
|
||||
|
||||
/// <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 |
|
@ -16,6 +16,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-4
|
|||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-5多边形", "12-形状画刷和变换-5多边形\12-形状画刷和变换-5多边形.csproj", "{820BEAB0-62D0-4228-8526-3FFCB7DDD723}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-6直线线帽和直线交点", "12-形状画刷和变换-6直线线帽和直线交点\12-形状画刷和变换-6直线线帽和直线交点.csproj", "{85E14ADD-EBAD-46AD-9D0D-D23918388E17}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
|
@ -54,5 +56,9 @@ Global
|
|||
{820BEAB0-62D0-4228-8526-3FFCB7DDD723}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{820BEAB0-62D0-4228-8526-3FFCB7DDD723}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{820BEAB0-62D0-4228-8526-3FFCB7DDD723}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{85E14ADD-EBAD-46AD-9D0D-D23918388E17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{85E14ADD-EBAD-46AD-9D0D-D23918388E17}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{85E14ADD-EBAD-46AD-9D0D-D23918388E17}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{85E14ADD-EBAD-46AD-9D0D-D23918388E17}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
Loading…
Reference in New Issue