Shape.KeyUp 事件
发生,松开键,而形状具有焦点。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
<BrowsableAttribute(True)> _
Public Event KeyUp As KeyEventHandler
[BrowsableAttribute(true)]
public event KeyEventHandler KeyUp
[BrowsableAttribute(true)]
public:
event KeyEventHandler^ KeyUp {
void add (KeyEventHandler^ value);
void remove (KeyEventHandler^ value);
}
[<BrowsableAttribute(true)>]
member KeyUp : IEvent<KeyEventHandler,
KeyEventArgs>
JScript 不支持事件。
备注
键事件按以下顺序发生:
KeyUp
处理键盘事件仅在窗体级别并不会使形状收到键盘事件,请在事件处理方法的窗体的 KeyPress 的 Handled 属性设置为 true。
有关如何处理事件的更多信息,请参见使用事件。
示例
下面的示例与 Help 类一起使用 KeyUp 事件显示弹出样式帮助给用户。
此示例要求您具有名为在窗体的 OvalShape1 的一个 OvalShape 控件。
Private Sub OvalShape1_KeyUp(
ByVal sender As Object,
ByVal e As System.Windows.Forms.KeyEventArgs
) Handles OvalShape1.KeyUp
' Determine whether the key entered is the F1 key.
' Display Help if it is.
If e.KeyCode = Keys.F1 Then
' Display a pop-up Help message to assist the user.
Help.ShowPopup(OvalShape1.Parent,
"This represents a router.", New Point(500, 500))
End If
End Sub
private void ovalShape1_KeyUp(object sender, System.Windows.Forms.KeyEventArgs e)
{
// Determine whether the key entered is the F1 key.
// Display Help if it is.
if (e.KeyCode == Keys.F1)
// Display a pop-up Help message to assist the user.
{
Help.ShowPopup(ovalShape1.Parent, "This represents a router.",
new Point(500, 500));
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
如何:使用 LineShape 控件绘制直线 (Visual Studio)