バージョン

ItemTransitionStyle プロパティ

ItemPath のプリフィックスおよびサフィックス領域から切り替える時に項目に適用される効果を決定するための値を返すか設定します。デフォルトは PathItemTransitionStyle.AdjustOpacity です。
シンタックス
'宣言
 
Public Property ItemTransitionStyle As PathItemTransitionStyle
public PathItemTransitionStyle ItemTransitionStyle {get; set;}
解説

項目パスのプリフィックスおよびサフィックス領域は、スクロール中に表示したり非表示に切り替える項目に予約されます。このプロパティの設定は、これらの領域の項目がサイズを持つか、パスを出る時に通常の設定からゼロに不透明度が自動的に調整されるかどうかを決定します。

注: このプロパティの設定で指定された効果が、さまざまな EffectStops プロパティで指定される効果に追加して適用されます。

使用例
In this example, the ItemTransitionStyle is set to AdjustSize, instead of the default AdjustOpacity, so that items will be resized as they are scrolled out of view instead of transitioning their opacity.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>

        
<igWindows:CarouselViewSettings ItemTransitionStyle="AdjustSize"/>

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