コントロールの境界を超えてパスが拡張されずに項目が整理されることを保証するために、パッディングが
XamCarouselPanel 内に自動的に追加されるかどうかを返すか設定します。デフォルトはTrueです。
The following example adjusts the ItemPathPadding to increase the default item padding. To use the ItemPathPadding as the only source for the padding, you can set the ItemPathAutoPad to false.
<igWindows:XamCarouselPanel>
<igWindows:XamCarouselPanel.ViewSettings>
<!-- Note: If ItemPathAutoPad is true, ItemPathPadding adds to the automatic
padding. Otherwise this specifies the actually padding used -->
<igWindows:CarouselViewSettings
ItemPathPadding="20"
ItemPathAutoPad="True"
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, 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>