-
Notifications
You must be signed in to change notification settings - Fork 108
FlipViewIndicator
Tim Heuer edited this page Nov 9, 2012
·
3 revisions
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.
Declarative:
<StackPanel>
<FlipView x:Name="MyFlipView"/>
<callisto:FlipViewIndicator FlipView="{Binding ElementName=MyFlipView}" />
</StackPanel>
No known issues.