バージョン

ItemSize プロパティ

カルーセルの項目のサイズを返すか設定します。デフォルトは 150x100 (WxH) です。
シンタックス
'宣言
 
Public Property ItemSize As Size
public Size ItemSize {get; set;}
解説

注: このプロパティで指定されたサイズは、カルーセルのすべての項目に適用されます。ユーザーは各項目に異なるサイズを指定できません。ただし ScalingEffectStopsScalingEffectStopDirection および UseScaling プロパティを使用して項目にスケール効果を適用して暗黙的に個々の項目のレンダリング サイズに影響を与えることができます。

注:AutoScaleItemContentsToFit プロパティは、各項目のコンテンツが、このプロパティで決定された項目を境界内に収めるためにスケールされるかどうかを決定します。

使用例
In the following example, the ItemSize property has been set to a custom value. Items that are largerthan the specified ItemSize will have scrollbars displayed by default unless the ItemHorizontalScrollBarVisibility and ItemVerticalScrollBarVisibility are set to a value other than Visible, which is the default value for these properties.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>

        
<igWindows:CarouselViewSettings 
            
ItemSize="100,50" 
            
ItemHorizontalScrollBarVisibility="Hidden" 
            
ItemVerticalScrollBarVisibility="Hidden" 
            
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, 99, 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 0,0 C 0,99 99,-99 99,0" />
</igWindows:XamCarouselPanel>
参照