Skip to main content
A newer version of this page is available. .

MessageOptions.CancelDelegate Property

Specifies a delegate that is executed on a Cancel button click in WinForms applications.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public Action CancelDelegate { get; set; }

Property Value

Type Description
Action

A Action that is executed on a Cancel button click.

Remarks

This parameter is supported in WinForms applications when the WinMessageOptions.Type property set to Flyout. The code snippet below demonstrates how to use this property.

using DevExpress.ExpressApp;
public class ProjectTaskController : ViewController {
    //…
    MessageOptions options = new MessageOptions();
    options.CancelDelegate = () => {
        //Place here your code that is executed on a Cancel button click.
    };
    //…
    Application.ShowViewStrategy.ShowMessage(options);
}
See Also