如何在PathGeometry中使用来自资源的PathFigure?

时间:2016-02-16 17:39:58

标签: wpf xaml resources pathgeometry

我想知道是否有任何方法可以使用xaml中PathFigure元素中的PathGeometry资源。假设我有一个ResourceDictionary和两个PathFigure对象,其中'x:Key'属性分别等于“Figure1”和“Figure2”。 我的目标是创建一个PathGeometry,其Figures属性填充了包含图1和图2的集合。我可以使用代码隐藏文件轻松地完成它,但是我想知道有没有办法只使用xaml。

<PathFigure IsClosed="True" StartPoint="2,9" x:Key="Figure1">
    <ArcSegment Point="15,9" Size="6.5, 2"/>
    <LineSegment Point="15,12"/>
    <ArcSegment Point="2,12" Size="6.5, 2"/>
</PathFigure>

<PathFigure IsClosed="True" StartPoint="10,7" x:Key="Figure2">
    <LineSegment Point="10, 2"/>
    <LineSegment Point="13,2"/>
    <LineSegment Point="13,7"/>
    <ArcSegment Point="10,7" Size="2,2" IsLargeArc="True"/>
</PathFigure>

我现在可以创建一个PathGeometry

<PathGeometry FillRule="Nonzero" x:Key="1">
    <PathFigureCollection>
        //Here I want to put Figure1 and Figure2
    </PathFigureCollection>
</PathGeometry>

我想我可以编写某种MarkupExtension来执行以下操作,但我正在寻找最好的方法。 谢谢你的建议。

1 个答案:

答案 0 :(得分:5)

您不需要任何特殊的内置StaticResourceExtension类(标记扩展名)。

<Window.Resources>
    <PathFigure IsClosed="True" StartPoint="2,9" x:Key="Figure1">
        <ArcSegment Point="15,9" Size="6.5, 2"/>
        <LineSegment Point="15,12"/>
        <ArcSegment Point="2,12" Size="6.5, 2"/>
    </PathFigure>

    <PathFigure IsClosed="True" StartPoint="10,7" x:Key="Figure2">
        <LineSegment Point="10, 2"/>
        <LineSegment Point="13,2"/>
        <LineSegment Point="13,7"/>
        <ArcSegment Point="10,7" Size="2,2" IsLargeArc="True"/>
    </PathFigure>

    <PathGeometry FillRule="Nonzero" x:Key="OneAndTwo">
        <StaticResource ResourceKey="Figure1" />
        <StaticResource ResourceKey="Figure2" />
    </PathGeometry>
</Window.Resources>

用法:

<Path Stroke="Black" StrokeThickness="1" Data="{StaticResource OneAndTwo}" />