Wednesday 27 May 2015

Flip View Controls using xaml (windows phone + store)

In old days we use pivot controls and panorama for representation of data in windows phone (silver light). But now a days these controls are replaced by Filp View controls. Here is short code snippet that shows how to use Hub controls in windows phone + store apps.

The code is quite easy to understand and self explanatory.


<FlipView>
<FlipViewItem>
<TextBlock FontSize=”400″ HorizontalAlignment=”Center” VerticalAlignment=”Center”>Apple</TextBlock>
</FlipViewItem>
<FlipViewItem>
<TextBlock FontSize=”400″ HorizontalAlignment=”Center”
VerticalAlignment=”Center”>Ball</TextBlock>
</FlipViewItem>
</FlipView>

No comments:

Post a Comment