95 lines
4.2 KiB
XML
95 lines
4.2 KiB
XML
<Window x:Class="_13_几何图形和图画_3使用CombinedGeometry.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-几何图形和图画-3使用CombinedGeometry" Height="800" Width="800">
|
|
<StackPanel>
|
|
<Label>融合图形-合并</Label>
|
|
<Path Fill="Yellow" Stroke="Blue" Margin="5">
|
|
<Path.Data>
|
|
<CombinedGeometry GeometryCombineMode="Union">
|
|
<CombinedGeometry.Geometry1>
|
|
<RectangleGeometry Rect="0,0 100,100" />
|
|
</CombinedGeometry.Geometry1>
|
|
|
|
<CombinedGeometry.Geometry2>
|
|
<EllipseGeometry Center="85,50" RadiusX="65" RadiusY="35" />
|
|
</CombinedGeometry.Geometry2>
|
|
</CombinedGeometry>
|
|
</Path.Data>
|
|
</Path>
|
|
|
|
<Label>融合图形-交集</Label>
|
|
<Path Fill="BlueViolet" Stroke="Blue" Margin="5">
|
|
<Path.Data>
|
|
<CombinedGeometry GeometryCombineMode="Intersect">
|
|
<CombinedGeometry.Geometry1>
|
|
<RectangleGeometry Rect="0,0 100,100" />
|
|
</CombinedGeometry.Geometry1>
|
|
|
|
<CombinedGeometry.Geometry2>
|
|
<EllipseGeometry Center="85,50" RadiusX="65" RadiusY="35" />
|
|
</CombinedGeometry.Geometry2>
|
|
</CombinedGeometry>
|
|
</Path.Data>
|
|
</Path>
|
|
|
|
<Label>融合图形-不包含</Label>
|
|
<Path Fill="CadetBlue" Stroke="Blue" Margin="5">
|
|
<Path.Data>
|
|
<CombinedGeometry GeometryCombineMode="Exclude">
|
|
<CombinedGeometry.Geometry1>
|
|
<RectangleGeometry Rect="0,0 100,100" />
|
|
</CombinedGeometry.Geometry1>
|
|
<CombinedGeometry.Geometry2>
|
|
<EllipseGeometry Center="85,50" RadiusX="65" RadiusY="35" />
|
|
</CombinedGeometry.Geometry2>
|
|
</CombinedGeometry>
|
|
</Path.Data>
|
|
</Path>
|
|
|
|
<Label>融合图形-不包含</Label>
|
|
<Path Fill="DeepSkyBlue" Stroke="Blue" Margin="5">
|
|
<Path.Data>
|
|
<CombinedGeometry GeometryCombineMode="Xor">
|
|
<CombinedGeometry.Geometry1>
|
|
<RectangleGeometry Rect="0,0 100,100" />
|
|
</CombinedGeometry.Geometry1>
|
|
<CombinedGeometry.Geometry2>
|
|
<EllipseGeometry Center="85,50" RadiusX="65" RadiusY="35" />
|
|
</CombinedGeometry.Geometry2>
|
|
</CombinedGeometry>
|
|
</Path.Data>
|
|
</Path>
|
|
|
|
<Label>旋转</Label>
|
|
<Path Fill="RoyalBlue" Stroke="Blue" Margin="5">
|
|
<Path.Data>
|
|
<CombinedGeometry GeometryCombineMode="Union">
|
|
<CombinedGeometry.Geometry1>
|
|
<CombinedGeometry GeometryCombineMode="Exclude">
|
|
<CombinedGeometry.Geometry1>
|
|
<EllipseGeometry Center="50,50" RadiusX="50" RadiusY="50" />
|
|
</CombinedGeometry.Geometry1>
|
|
|
|
<CombinedGeometry.Geometry2>
|
|
<EllipseGeometry Center="50,50" RadiusX="40" RadiusY="40" />
|
|
</CombinedGeometry.Geometry2>
|
|
</CombinedGeometry>
|
|
</CombinedGeometry.Geometry1>
|
|
|
|
<CombinedGeometry.Geometry2>
|
|
<RectangleGeometry Rect="44,5 10,90">
|
|
<RectangleGeometry.Transform>
|
|
<RotateTransform Angle="45" CenterX="50" CenterY="50" />
|
|
</RectangleGeometry.Transform>
|
|
</RectangleGeometry>
|
|
</CombinedGeometry.Geometry2>
|
|
</CombinedGeometry>
|
|
</Path.Data>
|
|
</Path>
|
|
|
|
</StackPanel>
|
|
</Window> |