Skip to content

FlipViewIndicator

Tim Heuer edited this page Nov 9, 2012 · 3 revisions

FlipViewIndicator

What it is

FlipViewIndicator is a companion control to be used exclusively with a FlipView control. It serves the purpose of providing some hinting UI to the user where they are in the navigation of items within a FlipView. This is similar UI as seen in the Windows Store application when viewing the screenshots.

The best usage is to be immediately underneath a FlipView and this is easily accomplished by using a StackPanel as demonstrated below in Usage. When done this way the margins of the FlipViewIndicator are set correctly. If using in other means, you may need to adjust margins on the indicator.

Example Usage

Declarative:

<StackPanel>
    <FlipView x:Name="MyFlipView"/>
    <callisto:FlipViewIndicator FlipView="{Binding ElementName=MyFlipView}" />
</StackPanel>

Example UI

FlipViewIndicator from Callisto

Known Issues

No known issues.

Clone this wiki locally