Hi,
 
I am facing a problem in synchronising the FlipView with the Page Indicator,this is my code:
 
 x:Name="flipView1"> 
 
 > 
 Background="Transparent"> 
 
 Width="*" /> 
 
 
 Height="*" /> 
 
 Grid.Column="0" Grid.Row="0">
  Source="{Binding Image}"/> 
   
 
 
  ItemsSource="{Binding ItemsSource, ElementName=flipView1}"> 
 
 
 Orientation="Horizontal" /> 
  
 
 
 Style="{StaticResource TextBlockButtonStyle}" CommandParameter="{Binding}" 
        Command="{Binding DataContext.SelectCommand, ElementName=grid, Mode=OneWay}"> 
 Height="30" Width="30" Margin="10,10">  Fill="#2c3389" RenderTransformOrigin="0.5,0.5" >

 
 ScaleX="1.25" ScaleY="1.25"/> 
 
 
 Fill="Gray" Stroke="#2c3389" />
and this is how I get the ItemSource to the FlipView in the code behind:
var tests = new List<SampleItem>() { test1,test2 }; 
flipView1.ItemsSource = tests; }

I can move from one page to another,but the page indicator doesn't work 

any help please,how can I bound Both the FlipView and the ItemsControl to same collection

thanks for help