Skip to main content

RepositoryItemColorPickEdit.ColorPickDialogClosed Event

Fires after the “Select Color” dialog has been closed.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Events")]
public event EventHandler<ColorPickDialogClosedEventArgs> ColorPickDialogClosed

Event Data

The ColorPickDialogClosed event's data class is DevExpress.XtraEditors.ColorPickDialogClosedEventArgs.

Remarks

The “Select Color” dialog can be invoked by an end-user via the ColorPickEdit control’s Custom tab. When the dialog is invoked, the RepositoryItemColorPickEdit.ColorPickDialogShowing event fires. When it is closed, the ColorPickDialogClosed event fires, allowing you to identify the dialog result (whether the user closed the dialog by clicking the OK or Cancel button).

For information on the “Select Color” dialog, see RepositoryItemColorPickEdit.ColorDialogOptions.

See Also