<Viewbox>
<Grid>
<Path Stroke="Black" StrokeThickness="2">
<Path.Data>
<PathGeometry>
<PathFigure x:Name="UpperCircle" StartPoint="0,150">
<ArcSegment IsLargeArc="True"
Size="50, 50"
Point="300, 150"
SweepDirection="Clockwise" />
</PathFigure>
<PathFigure x:Name="LeftLine"
StartPoint="{Binding StartPoint.X,ElementName=UpperCircle},150"
>
<LineSegment Point="50,280" />
</PathFigure>
</PathGeometry>
</Path.Data>
</Path>
</Grid>
</Viewbox>
Привет! Я хочу связать LeftLine X VALUE из начальной точки верхнего круга. Я пытался использовать привязку, но она не работает?