DXGridView Class
Stacks data items horizontally.
Namespace: DevExpress.UI.Xaml.Layout
Assembly: DevExpress.UI.Xaml.Layout.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
public class DXGridView :
GridView,
IDXListView,
ISupportSaveLoadControlState,
IScrollableControl
Remarks
You can add items to the DXGridView directly via the Items inherited collection. To create items from data stored in a data source, use the ItemsSource and ItemTemplate inherited properties.
The DXGridView control is a descendant of the standard GridView class, so it inherits the GridView’s built-in functionality and extends it with these:
- The DXGridView.ItemNavigationTargetType property - Allows you to specify a page to be opened when an end-user clicks an item within the DXGridView.
- The DXGridView.ItemClickCommand property - Specifies the command to be invoked on an item click.
- The DXGridView.ZoomOutItemTemplate and DXGridView.ZoomOutItemTemplateSelector properties - Allows you to specify an item presentation when zooming out.
- Saving/restoring a scroll position when the application is suspended/resumed (this feature is supported when the DXGridView resides within a DXPage).
Inheritance
Object
DependencyObject
Windows.UI.Xaml.UIElement
FrameworkElement
Control
Windows.UI.Xaml.Controls.ItemsControl
Windows.UI.Xaml.Controls.Primitives.Selector
Windows.UI.Xaml.Controls.ListViewBase
Windows.UI.Xaml.Controls.GridView
DXGridView
See Also