バージョン

ItemPathSuffixPercent プロパティ

オーバーオール サイズの小数のパーセントで表現されるパス サフィックス領域のサイズを返すか設定します(パーセントは 0.0 から 0.4 の範囲でなければなりません)。デフォルトは 15 です。
シンタックス
'宣言
 
Public Property ItemPathSuffixPercent As Double
public double ItemPathSuffixPercent {get; set;}
解説

サフィックス領域は、パスの終わりに配置され、項目がスクロール中にトランジションに入ったり出たりする領域です。項目は、トランジションに入っているか表示から出ている時に限ってサフィックス領域に表示されます。「停止」にある場合、項目はプリフィックスとサフィックス領域の間の領域に表示されます。

使用例
In this example, the ItemPathPrefixPercent is set to 0 to prevent items from being scrolled out of view when scrolling forward. The ItemPathSuffixPercent is set to it's highest value - 0.4 - to cause items beyond that point to be scrolled out of view when scrollling backward.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>

        
<igWindows:CarouselViewSettings 
            
ItemPathPrefixPercent="0"
            
ItemPathSuffixPercent="0.4"
            
ItemPathRenderBrush="#77000000" />

    
</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>
参照