Back to Devexpress

XafApplication.CustomProcessShortcut Event

expressappframework-devexpress-dot-expressapp-dot-xafapplication-16afe08d.md

latest3.5 KB
Original Source

XafApplication.CustomProcessShortcut Event

Occurs when a View is created by its shortcut.

Namespace : DevExpress.ExpressApp

Assembly : DevExpress.ExpressApp.v25.2.dll

NuGet Package : DevExpress.ExpressApp

Declaration

csharp
public event EventHandler<CustomProcessShortcutEventArgs> CustomProcessShortcut
vb
Public Event CustomProcessShortcut As EventHandler(Of CustomProcessShortcutEventArgs)

Event Data

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

PropertyDescription
HandledGets 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.
ViewSpecifies 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.

csharp
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

CreateShortcut()

XafApplication Class

XafApplication Members

DevExpress.ExpressApp Namespace