Skip to main content
All docs
V25.1
  • DXEventHandler<T> Delegate

    A method that handles events with strongly-typed event data and allows event subscribers to receive additional information when an event occurs.

    Namespace: DevExpress.Maui.Mvvm

    Assembly: DevExpress.Maui.Mvvm.dll

    NuGet Package: DevExpress.Maui.Mvvm

    Declaration

    public delegate void DXEventHandler<in T>(
        object sender,
        T e
    );

    Parameters

    Name Type Description
    sender System.Object

    The source of the event.

    e T

    Event data.

    Type Parameters

    Name Description
    T

    The type of event data passed to the handler.

    See Also