windowsforms-devexpress-dot-xtraeditors-dot-xtramessageboxargs-6d9ec20f.md
Occurs when an XtraMessageBox closes.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
public event EventHandler<XtraMessageBoxClosedArgs> Closed
Public Event Closed As EventHandler(Of XtraMessageBoxClosedArgs)
The Closed event's data class is XtraMessageBoxClosedArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| DialogResult | Gets or sets the DialogResult value that corresponds to the button the user chose in an XtraMessageBox. Inherited from XtraMessageBoxEventArgs. |
| MessageBoxArgs | Gets the current XtraMessageBox‘s settings through its XtraMessageBoxArgs object. Inherited from XtraMessageBoxEventArgs. |
| Visible | Gets or sets whether the user checked the Do not show this message again checkbox and whether to show the XtraMessageBox again. Inherited from XtraMessageBoxEventArgs. |
The event data class exposes the following methods:
| Method | Description |
|---|---|
| SaveToRegistry() | Saves Visible and DialogResult property values to the registry. |
See Also