バージョン

ItemPathRenderPen プロパティ

表示される項目の背後の ItemPath のアウトラインを描画するために使用される System.Windows.Media.Pen を返すか設定します。デフォルトでは、System.Windows.Media.Pen は設定されません。
シンタックス
'宣言
 
Public Property ItemPathRenderPen As Pen
public Pen ItemPathRenderPen {get; set;}
解説

ほとんどのパス ジオメトリでは、ItemPathRenderPen を指定すると、パス領域の強制強調の結果となります。ただし、いくつかのジオメトリで ItemPathRenderPen を使用すると、予期しない親結果が生まれる場合があります。これは WPF フレームワークがどのようにジオメトリをアウトラインをするかの機能です。

注:ItemPathRenderBrush を指定してパス領域に塗りつぶしを提供することもできます。

使用例
In the following example, the ItemPathRenderBrush and ItemPathRenderPen are used to identify where the path that the items will be arranged along has been positioned.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>
        
<igWindows:CarouselViewSettings>
            
            
<igWindows:CarouselViewSettings.ItemPathRenderBrush>
                
<LinearGradientBrush EndPoint="1,0.5" StartPoint="0,0.5">
                    
<GradientStop Color="#FFC1A6A6" Offset="0"/>
                    
<GradientStop Color="#FFAD3131" Offset="0.683"/>
                
</LinearGradientBrush>
            
</igWindows:CarouselViewSettings.ItemPathRenderBrush>

            
<igWindows:CarouselViewSettings.ItemPathRenderPen>
                
<Pen Brush="Black" DashStyle="{x:Static DashStyles.DashDot}" Thickness="1" />
            
</igWindows:CarouselViewSettings.ItemPathRenderPen>

            
<igWindows:CarouselViewSettings.ItemPath>
                
<Path Data="M400,0 C900,600 -300,600 200,0" />
            
</igWindows:CarouselViewSettings.ItemPath>
        
</igWindows:CarouselViewSettings>
    
</igWindows:XamCarouselPanel.ViewSettings>

    
<Ellipse Width="50" Height="50" Stroke="Black" Fill="Red" />
    
<Ellipse Width="100" Height="50" Stroke="Black" Fill="Green" />
    
<Polygon Points="0, 25, 25, 0, 75, 0, 100, 25, 75, 50, 25, 50" Stroke="Black" Fill="Yellow" />
    
<Rectangle Width="100" Height="50" Stroke="Black" Fill="Purple" />
    
<Polyline Points="0, 25, 25, 0, 50, 25, 25, 50, 0, 25" Stroke="SlateGray" StrokeThickness="2" Fill="Blue"/>
    
<Path Stroke="Black" Fill="Gray" Data="M 10,10 C 10,100 100,-100 100,10" />
</igWindows:XamCarouselPanel>
参照