バージョン

RotateItemsWithPathTangent プロパティ

パスに対する項目の位置のタンジェントに基づき、XamCarouselPanel が各項目を回転するかどうかを取得または設定します。デフォルトは False です。
シンタックス
'宣言
 
Public Property RotateItemsWithPathTangent As Boolean
public bool RotateItemsWithPathTangent {get; set;}
使用例
In the following example, the RotateItemsWithPathTangent property has been set to true so that the items are automatically rotated based on their position with respect to the path. Since the path is elliptical by default, the items will appear to rotate around the central area of the panel.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>

        
<igWindows:CarouselViewSettings 
            
RotateItemsWithPathTangent="True" />

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