バージョン

ReserveSpaceForReflections プロパティ

XamCarouselPanel が項目反映のためにスペースを予約すべきかどうかを取得または設定します。デフォルトは true です。
シンタックス
'宣言
 
Public Property ReserveSpaceForReflections As Boolean
public bool ReserveSpaceForReflections {get; set;}
解説

True の場合、各 CarouselPanelItem は反映のための領域を作るために ItemSize プロパティで指定された高さの 2 倍のサイズにします。

注: これは、このプロパティによって提供される追加スペースで反映を実際に表示するための CarouselPanelItem スタイル内のテンプレートの責任です。CarouselPanelItem のデフォルト スタイルをそのように実行します。

使用例
In the following example, the ReserveSpaceForReflections has been set to false to hide the reflections that are normally displayed below the carousel panel items. Since the items do not need to be as large, the ItemPathAutoPad will result in a smaller value since the items do not need to be as large and as a result the path will be large in size than when the shadows are used.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>

        
<igWindows:CarouselViewSettings 
            
ReserveSpaceForReflections="False"
            
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>
参照