windowsforms-devexpress-dot-xtraeditors-dot-pictureedit-7702dc30.md
Fires when the Image Editor dialog is closed.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DXCategory("Events")]
public event ImageEditorDialogClosedEventHandler ImageEditorDialogClosed
<DXCategory("Events")>
Public Event ImageEditorDialogClosed As ImageEditorDialogClosedEventHandler
The ImageEditorDialogClosed event's data class is DevExpress.XtraEditors.ImageEditor.ImageEditorDialogClosedEventArgs.
The ImageEditorDialogClosed event allows you to perform actions when the Image Editor dialog is closed.
The event’s Image parameter specifies the result of edit operations an end-user performed in the dialog. If no modifications were done, this parameter returns the original image.
The IsImageModified parameter returns whether an end-user has modified the original image in the dialog and accepted these modifications (clicked the Save button).
The PictureEdit.ImageEditorDialogClosed and RepositoryItemPictureEdit.ImageEditorDialogClosed events are equivalent.
See Also