wpf xaml PathGeometry BezierSegment

问题描述

enter image description here

<Canvas>
        <Path Canvas.Left="0" Canvas.Top="0" Fill="#440DB80D" stroke="{x:Null}" strokeThickness="2.5"
              Width="600"
              Height="200">
            <Path.Data>
                <GeometryGroup>
                    <PathGeometry>
                        <PathGeometry.figures>
                            <Pathfigure IsClosed="True" StartPoint="590,100">
                                <Pathfigure.Segments>
                                    <BezierSegment Point1="000,020" Point2="000,250" Point3="200,200"/>
                                    <BezierSegment Point1="000,000" Point2="580,400" Point3="580,200"/>
                                    <!--<BezierSegment Point1="000,200" Point2="580,200" Point3="600,200"/>-->
                                </Pathfigure.Segments>
                            </Pathfigure>
                        </PathGeometry.figures>
                    </PathGeometry>
                </GeometryGroup>
            </Path.Data>
        </Path>
</Canvas>

你好。 我正在尝试使用 wpf xaml PathGeometry BezierSegment 显示图形的图像。

目前工作的路径如上。

如果你能告诉我如何画它,我将不胜感激。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)