バージョン

ItemPathVerticalAlignment プロパティ

項目パス領域内の ItemPathSystem.Windows.VerticalAlignment を返すか設定します。デフォルトは .Center です。
シンタックス
'宣言
 
Public Property ItemPathVerticalAlignment As VerticalAlignment
public VerticalAlignment ItemPathVerticalAlignment {get; set;}
解説

項目パス領域は、XamCarouselPanel の境界に ItemPathPadding を適用することで定義される XamCarouselPanel 内の領域です。

使用例
The following sample demonstrates how the ItemPathVerticalAlignment can be used to align the path within the XamCarouselPanel. In this example, the ItemPathStretch is set to Uniform so that the aspect ratio of the Path is maintained. When the path height is less than the available area, it will be aligned to the Bottom.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>

        
<igWindows:CarouselViewSettings 
            
ItemPathStretch="Uniform" 
            
ItemPathVerticalAlignment="Bottom" 
            
ItemPathRenderBrush="#77000000">

            
<igWindows:CarouselViewSettings.ItemPath>
                
<Path Data="M0,0 L0,200 L800,200 L800,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>
参照