バージョン

SkewAngleYEffectStopDirection プロパティ

SkewAngleYEffectStop を評価するために使用される方向を返すか設定します。デフォルトは EffectStopDirection.UseItemPath です。
シンタックス
'宣言
 
Public Property SkewAngleYEffectStopDirection As EffectStopDirection
public EffectStopDirection SkewAngleYEffectStopDirection {get; set;}
解説

XamCarouselPanel に沿って項目の位置に基づく、または ItemPath 内の項目の垂直または水平位置に基づき、効果ストップを評価するために方向を設定できます。

使用例
In the following example, the ability to control the vertical skew has been used to ensure that items are skewed along the default circular path. The skewing is enabled by setting the UseSkewing to true and then providing SkewAngleYEffectStop values for the SkewAngleYEffectStops property. Since the SkewAngleYEffectStops is set to UseItemPath, the Offsets are based upon the position of the items along the path. As such, an Offset of 0.5 is half way along the path provided.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>
        
<igWindows:CarouselViewSettings 
            
UseSkewing="True"
            
SkewAngleYEffectStopDirection="UseItemPath"
            
ItemPathRenderBrush="#77000000">

            
<igWindows:CarouselViewSettings.SkewAngleYEffectStops>
                
<igWindows:SkewAngleYEffectStopCollection>
                    
<igWindows:SkewAngleYEffectStop Offset="0" Value="60" />
                    
<igWindows:SkewAngleYEffectStop Offset=".5" Value="0" />
                    
<igWindows:SkewAngleYEffectStop Offset="1" Value="-60" />
                
</igWindows:SkewAngleYEffectStopCollection>
            
</igWindows:CarouselViewSettings.SkewAngleYEffectStops>
            
        
</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>
参照