バージョン

IsNavigatorVisible プロパティ

CarouselPanelNavigator が Visible であるかどうかを取得または設定します。デフォルトはTrueです。
シンタックス
'宣言
 
Public Property IsNavigatorVisible As Boolean
public bool IsNavigatorVisible {get; set;}
解説

CarouselPanelNavigator はカルーセルの項目のリストからナビゲートするための UI を提供します。項目をスクロールするためにクリックすると、XamCarouselPanelCommands を実行するボタンを表示します。項目のスクロールにユーザー独自の UI を提供したい場合、このプロパティを非表示に設定し、ナビゲータで使用される同じスクロール コマンドを実行する UI を作成することで、CarouselPanelNavigator を隠すことができます。

使用例
In this example, the IsNavigatorVisible is set to false so that the item navigator is not displayed. This is useful in this situation since it is known that all the items can be in view at one time. Likewise, the ShouldScrollItemsIntoInitialPosition has been set to false so that the items are not scrolled into view when the panel is first displayed.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>

        
<igWindows:CarouselViewSettings 
                
IsNavigatorVisible="False" 
                
ShouldScrollItemsIntoInitialPosition="False"/>

    
</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" />
</igWindows:XamCarouselPanel>
参照