Control.KeyUp イベントとは? わかりやすく解説

Control.KeyUp イベント

コントロールフォーカスがあるときにキー離される発生します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

Public Event KeyUp As KeyEventHandler
Dim instance As Control
Dim handler As KeyEventHandler

AddHandler instance.KeyUp, handler
public event KeyEventHandler KeyUp
public:
event KeyEventHandler^ KeyUp {
    void add (KeyEventHandler^ value);
    void remove (KeyEventHandler^ value);
}
/** @event */
public void add_KeyUp (KeyEventHandler value)

/** @event */
public void remove_KeyUp (KeyEventHandler value)
JScript では、イベント使用できますが、新規に宣言することはできません。
解説解説
使用例使用例

KeyUp イベントHelp クラス使用してポップアップ スタイルヘルプユーザー表示するコード例次に示します

' This example demonstrates how to use the KeyUp event with the Help
 class to display
' pop-up style help to the user of the application. When the user presses
 F1, the Help
' class displays a pop-up window, similar to a ToolTip, near the control.
 This example assumes
' that a TextBox control, named textBox1, has been added to the form
 and its KeyUp
' event has been contected to this event handler method.
Private Sub textBox1_KeyUp(ByVal
 sender As Object, ByVal
 e As System.Windows.Forms.KeyEventArgs) Handles textBox1.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 topic to assist the user.
        Help.ShowPopup(textBox1, "Enter your first name",
 New Point(textBox1.Right, Me.textBox1.Bottom))
    End If
End Sub 'textBox1_KeyUp
// This example demonstrates how to use the KeyUp event with the Help
 class to display
// pop-up style help to the user of the application. When the user presses
 F1, the Help
// class displays a pop-up window, similar to a ToolTip, near the control.
 This example assumes
// that a TextBox control, named textBox1, has been added to the form
 and its KeyUp
// event has been contected to this event handler method.
private void textBox1_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 topic to assist the user.
        Help.ShowPopup(textBox1, "Enter your first name", new
 Point(textBox1.Right, this.textBox1.Bottom));
    }
}
   // This example demonstrates how to use the KeyUp event with the Help
 class to display
   // pop-up style help to the user of the application. When the user presses
 F1, the Help
   // class displays a pop-up window, similar to a ToolTip, near the control.
 This example assumes
   // that a TextBox control, named textBox1, has been added to the form
 and its KeyUp
   // event has been connected to this event handler method.
private:
   void textBox1_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 topic to assist the user.
         Help::ShowPopup( textBox1, "Enter your first name", Point(textBox1->Right,this->textBox1->Bottom)
 );
      }
   }
// This example demonstrates how to use the KeyUp event with the Help
 
// class to display pop-up style help to the user of the application.
 
// When the user presses F1, the Help class displays a pop-up window,
 
// similar to a ToolTip, near the control. This example assumes that
 a 
// TextBox control, named textBox1, has been added to the form and its
 
// KeyUp event has been contected to this event handler method.
private void textBox1_KeyUp(Object sender,
 
    System.Windows.Forms.KeyEventArgs e)
{
    // Determine whether the key entered is the F1 key. 
    // Display help if it is.
    if (e.get_KeyCode().Equals(Keys.F1)) {
        // Display a pop-up help topic to assist the user.
        Help.ShowPopup(textBox1, "Enter your first name", 
            new Point(textBox1.get_Right(), this.textBox1.get_Bottom()));
    }
} //textBox1_KeyUp
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「Control.KeyUp イベント」の関連用語

Control.KeyUp イベントのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



Control.KeyUp イベントのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS