Back to Devexpress

DetailView Class

expressappframework-devexpress-dot-expressapp-2eb3b963.md

latest9.1 KB
Original Source

DetailView Class

A Detail View.

Namespace : DevExpress.ExpressApp

Assembly : DevExpress.ExpressApp.v25.2.dll

NuGet Package : DevExpress.ExpressApp

Declaration

csharp
public class DetailView :
    ObjectView
vb
Public Class DetailView
    Inherits ObjectView

The following members return DetailView objects:

Show 20 links

Remarks

The DetailView class is an ObjectView descendant. Use the DetailView class to view or edit an object’s properties.

ASP.NET Core Blazor Windows Forms

XAF automatically generates a user interface for Detail Views. You can customize an auto-generated Detail View in the Application Model. Use the Views | <DetailView> node. For example, you can specify the object that this Detail View displays and change the displayed View Items and their layout.

To customize a Detail View in code, use the Frame.View or ViewController.View property.

To specify the object displayed in the Detail View, use the DetailView.CurrentObject property.

To populate a View with View Items, use the following members:

To customize View Items’ layout, use the CompositeView.LayoutManager property.

Tip

To view and edit the properties of a collection of objects, use the ListView class.

Inheritance

Object View CompositeView ObjectView DetailView

Extension Methods

CustomizeViewItemControl(Controller, Action<ViewItem>)

CustomizeViewItemControl<T>(Controller, Action<T>)

CustomizeViewItemControl(Controller, Action<ViewItem>, String[])

CustomizeViewItemControl<T>(Controller, Action<T>, String[])

CustomizeViewItemControl(Controller, Action<ViewItem>)

CustomizeViewItemControl<T>(Controller, Action<T>)

CustomizeViewItemControl(Controller, Action<ViewItem>, String[])

CustomizeViewItemControl<T>(Controller, Action<T>, String[])

See Also

DetailView Members

UI Element Overview

Views

Detail View Layout Customization

DevExpress.ExpressApp Namespace