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

XafApplication.CustomProcessShortcut Event

Occurs when a View is created by its shortcut.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public event EventHandler<CustomProcessShortcutEventArgs> CustomProcessShortcut

#Event Data

The CustomProcessShortcut event's data class is CustomProcessShortcutEventArgs. The following properties provide information specific to this event:

Property Description
Handled Gets or sets a value that indicates whether the event handler has completely handled the event or whether the system should continue its own processing. Inherited from HandledEventArgs.
View Specifies the View to be created for the CustomProcessShortcutEventArgs.Shortcut

#Remarks

This event is raised as a result of calling the XafApplication.ProcessShortcut method. You can handle this event to create a custom View when a specific shortcut is passed as the handler’s CustomProcessShortcutEventArgs.Shortcut parameter. Set the created View to the CustomizePopupWindowParamsEventArgs.View parameter. To cancel the default View creation, set the Handled parameter to true.

public sealed partial class MySolutionModule : ModuleBase {
   // ...
    public override void Setup(XafApplication application) {
        base.Setup(application);
        application.CustomProcessShortcut += delegate (object sender, CustomProcessShortcutEventArgs e) {
            if ((e.Shortcut.ViewId == "MyDomainObject_ListView")) {
                IObjectSpace objectSpace = Application.CreateObjectSpace(e.Shortcut.ObjectClass);
                e.View = Application.CreateDashboardView(objectSpace, "MyDashboardView", true);
                e.Handled = true;
            }
        };
    }
    // ...
}
See Also