ActionContainerViewItem Class
An abstract class that serves as the base class for the Action Container View Items.
Namespace: DevExpress.ExpressApp.Editors
Assembly: DevExpress.ExpressApp.v25.2.dll
NuGet Package: DevExpress.ExpressApp
Declaration
public abstract class ActionContainerViewItem :
ViewItem,
IActionContainer,
ISupportUpdate,
IDisposable,
IAppearanceVisibility,
IAppearanceBase,
INotifyAppearanceVisibilityChanged
Remarks
An Action Container View Item is used to display a particular Action Container in a UI. The ActionContainerViewItem class is an abstract class from which all the Action Container View Items derive. The following table lists XAF’s built-in Action Container View Items.
| ActionContainerViewItem Descendant | Description |
|---|---|
| BlazorActionContainerViewItem | The Action Container View Item used in the XAF ASP.NET Core Blazor applications. |
| WinActionContainerViewItem | The Action Container View Item used in the XAF Windows Forms applications. |
The ActionContainerViewItem exposes the ActionContainerViewItem.BeginUpdate and ActionContainerViewItem.EndUpdate methods designed to implement batch modifications with Action Container View Items. Use them to prevent excessive updates when changing multiple settings at once. For this purpose, enclose the code that changes multiple properties within calls to these methods.
For information on adding an Action Container View Item to a Detail View, refer to the following topics: