Back to Devexpress

FlipView Class

wpf-devexpress-dot-xpf-dot-windowsui-036beef0.md

latest3.6 KB
Original Source

FlipView Class

A Flip View.

Namespace : DevExpress.Xpf.WindowsUI

Assembly : DevExpress.Xpf.Controls.v25.2.dll

NuGet Package : DevExpress.Wpf.Controls

Declaration

csharp
[DXLicenseWpf]
public class FlipView :
    veSelector,
    ISupportManipulation
vb
<DXLicenseWpf>
Public Class FlipView
    Inherits veSelector
    Implements ISupportManipulation

Remarks

A FlipView is a WindowsUI container which displays one item at a time and allows end-users to flip through items such as photos. A FlipView is an ItemsControl descendant, so it can store any object as its content. There also exist FlipViewItem objects, which are containers specially designed to be items and display content within a FlipView. To populate a FlipView with items, include them between the FlipView opening and closing tags in XAML, or use the ItemsSource property to set a data source. See the Flip View topic to learn more.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FlipView class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-flipview-create-bind-to-data/CS/FlipViewSample/MainWindow.xaml#L70

xml
<dxwui:FlipView ItemsSource="{Binding DataSource}" ItemTemplate="{StaticResource ItemContentTemplate}"/>

Inheritance

Show 12 items

Object DispatcherObject DependencyObject Visual UIElement FrameworkElement Control ItemsControl Selector DevExpress.Xpf.WindowsUI.Base.veSelectorBase DevExpress.Xpf.WindowsUI.Base.veSelector FlipView

See Also

FlipView Members

Flip View

How To: Create a FlipView and Populate It with Data

DevExpress.Xpf.WindowsUI Namespace