次の方法で共有


Control.ModifierKeys プロパティ

どの修飾子キー (Shift、Ctrl、および Alt) が押された状態であるかを示す値を取得します。

Public Shared ReadOnly Property ModifierKeys As Keys
[C#]
public static Keys ModifierKeys {get;}
[C++]
public: __property static Keys get_ModifierKeys();
[JScript]
public static function get ModifierKeys() : Keys;

プロパティ値

Keys 値のビットごとの組み合わせ。既定値は None です。

使用例

[Visual Basic, C#, C++] ボタンがクリックされたときに Ctrl キーが押されている場合、次の例ではそのボタンが非表示になります。この例は、 button1 という ButtonForm 上にあることを前提にしています。

 
Private Sub button1_Click(sender As Object, _
  e As EventArgs) Handles button1.Click
   ' If the CTRL key is pressed when the 
   ' control is clicked, hide the control. 
   If Control.ModifierKeys = Keys.Control Then
      CType(sender, Control).Hide()
   End If
End Sub

[C#] 
private void button1_Click(object sender, System.EventArgs e)
{
   /* If the CTRL key is pressed when the 
      * control is clicked, hide the control. */
   if(Control.ModifierKeys == Keys.Control)
   {
      ((Control)sender).Hide();
   }
}

[C++] 
private:
    void button1_Click(Object* sender, System::EventArgs* /*e*/) {
        /* If the CTRL key is pressed when the
         * control is clicked, hide the control. */
        if (Control::ModifierKeys == Keys::Control) {
            (dynamic_cast<Control*>(sender))->Hide();
        }
    }

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

Control クラス | Control メンバ | System.Windows.Forms 名前空間 | Keys