'Declaration
Public Event MessageBoxShowing As EventHandler(Of MessageBoxShowingEventArgs)
public event EventHandler<MessageBoxShowingEventArgs> MessageBoxShowing
Event Data
The event handler receives an argument of type MessageBoxShowingEventArgs containing data related to this event. The following MessageBoxShowingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | To check continue this event or not |
Icon | Icon that shows in the default modal |
Message | Message that shows in the default modal |
Sender | Toolbar that raise the event |
See Also