ToolStripDropDown.Leave Evento
Definición
Se produce cuando el foco de entrada deja el control.Occurs when the input focus leaves the control.
public:
event EventHandler ^ Leave;
[System.ComponentModel.Browsable(false)]
public event EventHandler Leave;
member this.Leave : EventHandler
Public Custom Event Leave As EventHandler
- Atributos
Ejemplos
En el ejemplo de código siguiente se muestra el uso de este miembro.The following code example demonstrates the use of this member. En el ejemplo, un controlador de eventos informa sobre la aparición del Leave evento.In the example, an event handler reports on the occurrence of the Leave event. Este informe le ayuda a saber cuándo se produce el evento y puede ayudarle a depurar.This report helps you to learn when the event occurs and can assist you in debugging. Para notificar varios eventos o eventos que se producen con frecuencia, considere MessageBox.Show la Console.WriteLine posibilidad de reemplazar por o anexar el TextBoxmensaje a una multilínea.To report on multiple events or on events that occur frequently, consider replacing MessageBox.Show with Console.WriteLine or appending the message to a multiline TextBox.
Para ejecutar el código de ejemplo, péguelo en un proyecto que contenga una instancia de ToolStripDropDown tipo ToolStripDropDown1
denominada.To run the example code, paste it into a project that contains an instance of type ToolStripDropDown named ToolStripDropDown1
. A continuación, asegúrese de que el controlador de eventos Leave está asociado al evento.Then ensure that the event handler is associated with the Leave event.
private void ToolStripDropDown1_Leave(Object sender, EventArgs e) {
MessageBox.Show("You are in the ToolStripDropDown.Leave event.");
}
Private Sub ToolStripDropDown1_Leave(sender as Object, e as EventArgs) _
Handles ToolStripDropDown1.Leave
MessageBox.Show("You are in the ToolStripDropDown.Leave event.")
End Sub
Comentarios
Para obtener más información sobre el manejo de eventos, consulte controlar y provocar eventos.For more information about handling events, see Handling and Raising Events.