Skip to main content
.NET 6.0+

DialogControllerAcceptingEventArgs Class

Represents arguments passed to the DialogController.Accepting event.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public class DialogControllerAcceptingEventArgs :
    CancelEventArgs

Remarks

The DialogControllerAcceptingEventArgs class declares properties specific to the DialogController.Accepting event. This event is designed to execute custom code when clicking the accept button on a pop-up Window with a DialogController. You can handle this event to perform custom code, and specify a View to be displayed after this Action has been executed.

This class is inherited from the CancelEventArgs class, so, you can use the handler’s Cancel parameter to prevent saving the changes made to the current Detail View’s persistent object.

Inheritance

Object
EventArgs
CancelEventArgs
DialogControllerAcceptingEventArgs
See Also