ReusingGeometry.axaml代码

<Window xmlns="https://github.com/avaloniaui"
        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"
        Height="300" Width="300"
        x:Class="AvaloniaUI.ReusingGeometry"
        Title="ReusingGeometry">
    <Window.Resources>
        <GeometryGroup x:Key="Geometry">
            <RectangleGeometry Rect="0,0,100,100"></RectangleGeometry>
            <EllipseGeometry Center="150,50" RadiusX="35" RadiusY="25"></EllipseGeometry>
        </GeometryGroup>
    </Window.Resources>

    <Canvas>
        <Path Fill="Yellow" Stroke="Blue" StrokeThickness="1" Margin="5" Canvas.Top="10" Canvas.Left="10"
              Data="{StaticResource Geometry}">
        </Path>

        <Path Fill="Green" Stroke="Blue" StrokeThickness="1" Margin="5" Canvas.Top="150" Canvas.Left="10"
              Data="{StaticResource Geometry}">
        </Path>
    </Canvas>
</Window>

ReusingGeometry.axaml.cs代码

using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;

namespace AvaloniaUI;

public partial class ReusingGeometry : Window
{
    public ReusingGeometry()
    {
        InitializeComponent();
    }
}

运行效果

image

 

posted on 2025-09-06 13:46  dalgleish  阅读(7)  评论(0)    收藏  举报