本人想做一个时时导航,本人知道坐标了,但是坐标之间连线在WPF中不知道怎么做,在winform中有GMapOverlay这个新建图层的概念,但在WPF中没有这个概念!那么画线需要怎么解决呢!谁能给本人一段例子!
解决方案
40
CANVAS 绘图的,同HTML
直线:
直线:
<Line X1="10" Y1="10" X2="50" Y2="50" Stroke="Blue" StrokeThickness="4" />
平滑的曲线: (这个不懂~~)
<Path Stroke="Red" StrokeThickness="2" > <Path.Data> <PathGeometry> <PathGeometry.Figures> <PathFigure StartPoint="100,100"> <PathFigure.Segments> <PolyBezierSegment Points="100,0 150,0 200,50 200,0 250,0 300,100"></PolyBezierSegment> </PathFigure.Segments> </PathFigure> </PathGeometry.Figures> </PathGeometry> </Path.Data> </Path>