次の方法で共有


Shape.KeyPress イベント

キーが押され、図形にフォーカスがあるときに発生します。

名前空間:  Microsoft.VisualBasic.PowerPacks
アセンブリ:  Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)

構文

'宣言
<BrowsableAttribute(True)> _
Public Event KeyPress As KeyPressEventHandler
[BrowsableAttribute(true)]
public event KeyPressEventHandler KeyPress
[BrowsableAttribute(true)]
public:
 event KeyPressEventHandler^ KeyPress {
    void add (KeyPressEventHandler^ value);
    void remove (KeyPressEventHandler^ value);
}
[<BrowsableAttribute(true)>]
member KeyPress : IEvent<KeyPressEventHandler,
    KeyPressEventArgs>
JScript では、イベントは使用できません。

解説

キー イベントは次の順序で発生します。

KeyDown

KeyPress

KeyUp

KeyPress イベントは、文字以外のキーによっては発生しませんが、文字以外のキーは KeyDown イベントと KeyUp イベントを発生させます。

KeyChar プロパティを使用して、実行時のキーストロークをサンプリングし、一般的なキーストロークのサブセットを処理または変更します。

キーボード イベントをフォーム レベルでのみ処理し、キーボード イベントの受信を図形を公開しないように true、フォームの KeyPress のイベント ハンドラー メソッドの Handled のプロパティを設定します。

イベントの処理方法の詳細については、「イベントの利用」を参照してください。

イベント ハンドラー内で KeyPress イベントに応答する方法を次の例に示します。この例では、フォームの RectangleShape1 という名前の RectangleShape のコントロールがあることが必要です。

Private Sub RectangleShape1_KeyPress(
    ByVal sender As Object, 
    ByVal e As System.Windows.Forms.KeyPressEventArgs
  ) Handles RectangleShape1.KeyPress

    Dim ch As Char
    ch = e.KeyChar
    MsgBox("You pressed the " & ch & " key.")
End Sub
private void rectangleShape1_KeyPress(object sender, 
    System.Windows.Forms.KeyPressEventArgs e)
{
    char ch;
    ch = e.KeyChar;
    MessageBox.Show("You pressed the " + ch + " key.");
}

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

Shape クラス

Microsoft.VisualBasic.PowerPacks 名前空間

その他の技術情報

方法 : LineShape コントロールを使用して線を描画する (Visual Studio)

方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)

ライン コントロールとシェイプ コントロールの概要 (Visual Studio)