expressappframework-devexpress-dot-expressapp-dot-systemmodule-8ad7a85a.md
Represents arguments passed to the DialogController.Accepting event.
Namespace : DevExpress.ExpressApp.SystemModule
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
public class DialogControllerAcceptingEventArgs :
CancelEventArgs
Public Class DialogControllerAcceptingEventArgs
Inherits CancelEventArgs
DialogControllerAcceptingEventArgs is the data class for the following events:
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.
Object EventArgs CancelEventArgs DialogControllerAcceptingEventArgs
See Also