July 2017
Beginner
466 pages
9h 37m
English
The FlipView control is used to display a collection of images or other items in such a manner that your browsing becomes easy. The main use of this control is in a photo gallery within an app with an easy-to-navigate feature, both for touch-based and mouse-based systems. In a touch-based system, the user can swipe left/right or up/down, and in a mouse-based system, the user can navigate using the arrowheads which display on hovering the mouse.
Let us create a FlipView control in an XAML page by placing a few static images:
<FlipView>
<Image Source="Assets/WP_001.jpg" />
<Image Source="Assets/WP_002.jpg" />
<Image Source="Assets/WP_003.jpg" />
<Image Source="Assets/WP_004.jpg" />
</FlipView>
Alternatively, you can use ...
Read now
Unlock full access