ToolStripControlHost.LostFocus 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在托管控件失去焦点时发生。
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
事件类型
- 属性
示例
下面的代码示例演示了此成员的用法。 在此示例中,事件处理程序报告事件的发生情况 LostFocus 。 此报告可帮助你了解事件发生的时间,并可以帮助你进行调试。
若要运行示例代码,请将其粘贴到包含名为 ToolStripControlHost1
的类型的ToolStripControlHost实例的项目中。 然后,确保事件处理程序与 LostFocus 事件相关联。
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
注解
有关处理事件的详细信息,请参阅 处理和引发事件。