Skip to main content

ClosePopupEventArgs(RoutedEvent, PopupCloseMode, Object) Constructor

Initializes a new instance of the ClosePopupEventArgs class with the specified routed event, mode and value.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public ClosePopupEventArgs(
    RoutedEvent closeEvent,
    PopupCloseMode mode,
    object value
)

Parameters

Name Type Description
closeEvent RoutedEvent

The routed event.

mode PopupCloseMode

A PopupCloseMode enumeration value specifying the close mode. This value is assigned to the ClosePopupEventArgs.CloseMode property.

value Object

A Object specifying the edit value. This object is assigned to the ClosePopupEventArgs.EditValue property.

Remarks

Instances of the ClosePopupEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

See Also