Shape.LostFocus 事件
形状,当失去焦点时,发生。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
<BrowsableAttribute(True)> _
Public Event LostFocus As EventHandler
[BrowsableAttribute(true)]
public event EventHandler LostFocus
[BrowsableAttribute(true)]
public:
event EventHandler^ LostFocus {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member LostFocus : IEvent<EventHandler,
EventArgs>
JScript 不支持事件。
备注
使用键盘 (可选, SHIFT+TAB,当您更改焦点,等等) 时,或调用 Select 或 SelectNextControl 方法,焦点事件按以下顺序发生:
LostFocus
当使用鼠标或通过调用 Focus 方法更改焦点时,焦点事件将按以下顺序发生:
LostFocus
有关如何处理事件的更多信息,请参见使用事件。
备注
不要尝试将 LostFocus 事件处理程序的焦点。否则会导致应用程序或操作系统停止响应。
示例
下面的示例演示如何在事件处理程序中响应 LostFocus 事件。 此示例要求您具有名为在窗体的 RectangleShape1 的一个 RectangleShape 控件。
Private Sub RectangleShape1_LostFocus() Handles RectangleShape1.LostFocus
' Restore the default BorderColor.
RectangleShape1.BorderColor =
PowerPacks.SimpleShape.DefaultBorderColor
End Sub
private void rectangleShape1_LostFocus(object sender, System.EventArgs e)
{
// Restore the default BorderColor.
rectangleShape1.BorderColor = SimpleShape.DefaultBorderColor;
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
如何:使用 LineShape 控件绘制直线 (Visual Studio)