ToolStripControlHost.LostFocus Event

Definition

Occurs when the hosted control loses focus.

public:
 event EventHandler ^ LostFocus;
[System.ComponentModel.Browsable(false)]
public event EventHandler LostFocus;
[System.ComponentModel.Browsable(false)]
public event EventHandler? LostFocus;
[<System.ComponentModel.Browsable(false)>]
member this.LostFocus : EventHandler 
Public Custom Event LostFocus As EventHandler 

Event Type

Attributes

Examples

The following code example demonstrates the use of this member. In the example, an event handler reports on the occurrence of the LostFocus event. This report helps you to learn when the event occurs and can assist you in debugging.

To run the example code, paste it into a project that contains an instance of type ToolStripControlHost named ToolStripControlHost1. Then ensure that the event handler is associated with the LostFocus event.

private void ToolStripControlHost1_LostFocus(Object sender, EventArgs e) {

   MessageBox.Show("You are in the ToolStripControlHost.LostFocus event.");
}
Private Sub ToolStripControlHost1_LostFocus(sender as Object, e as EventArgs) _ 
     Handles ToolStripControlHost1.LostFocus

Console.WriteLine("You are in the ToolStripControlHost.LostFocus event.")

End Sub

Remarks

For more information about handling events, see Handling and Raising Events.

Applies to

See also