KeyEventArgs.Key プロパティ

定義

イベントに関連付けられているキーボード キーを取得します。

public:
 property System::Windows::Input::Key Key { System::Windows::Input::Key get(); };
public System.Windows.Input.Key Key { get; }
member this.Key : System.Windows.Input.Key
Public ReadOnly Property Key As Key

プロパティ値

Key

イベントが参照する Key

次の例では、 を KeyEventHandler 作成し、 に関連付 KeyEventArgs けられているキーが Return キーであるかどうかを確認します。

private void OnKeyDownHandler(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Return)
    {
        textBlock1.Text = "You Entered: " + textBox1.Text;
    }
}
Private Sub OnKeyDownHandler(ByVal sender As Object, ByVal e As KeyEventArgs)
    If (e.Key = Key.Return) Then
        textBlock1.Text = "You Entered: " + textBox1.Text
    End If
End Sub

適用対象

こちらもご覧ください