Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DXCollectionView.ShowDetailEditForm(Int32, Boolean) Method

Invokes an edit form for a CollectionView item with the specified handle.

Namespace: DevExpress.Maui.CollectionView

Assembly: DevExpress.Maui.CollectionView.dll

NuGet Package: DevExpress.Maui.CollectionView

#Declaration

C#
public void ShowDetailEditForm(
    int itemHandle,
    bool animated = false
)

#Parameters

Name Type Description
itemHandle Int32

The handle of the item that is being edited.

#Optional Parameters

Name Type Default Description
animated Boolean False

Specifies whether animation effects apply to the edit form when it is invoked.

#Remarks

The following example shows the Edit form on an item tap:

private void collectionView_Tap(object sender, DevExpress.Maui.CollectionView.CollectionViewGestureEventArgs e) {
    collectionView.ShowDetailEditForm(e.ItemHandle);
}

For more information, refer to the following topic: Show Built-In Forms to Display, Create, and Edit Items.

See Also