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
フォーム レベルでのみのキーボード イベントを処理し、キーボード イベントを受信する図形を有効に、次のように設定します。、HandledフォームのプロパティKeyPressイベント処理メソッドをtrueです。
イベントを処理する方法の詳細については、次を参照してください。イベントの処理と発生です。
例
次の例では、KeyUpイベントと共に、Helpポップアップのスタイル、ユーザーにヘルプを表示するクラスです。
この例では、 OvalShape OvalShape1 という名前のフォームにコントロールです。
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)
方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)