2011-07-31 69 views
3

一旦我們點擊路徑,如何獲得確切的路徑配置實例?我的路徑有多個路徑圖。我有以下XAML代碼:wpf中的路徑圖

<Path Stroke="Black"> 
     <Path.Data> 
      <PathGeometry> 
       <PathFigure StartPoint="5,5"> 
        <LineSegment Point="10,10"/> 
        <LineSegment Point="20,60"/> 
        <LineSegment Point="70,90"/> 
       </PathFigure> 
       <PathFigure StartPoint="20,60"> 
        <LineSegment Point="30,20"/> 
        <LineSegment Point="40,70"/> 
        <LineSegment Point="70,80"/> 
       </PathFigure> 
      </PathGeometry> 
     </Path.Data> 
    </Path> 

回答