Skip to main content
.NET 8.0+

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

DialogControllerAcceptingEventArgs Class

Represents arguments passed to the DialogController.Accepting event.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v24.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