PowerTools PlusPak for Windows Forms 8.0J
ShortcutKeyDown イベント
使用例 

GcComboFrameのショートカットキーが押されたときに発生します。
構文
Public Event ShortcutKeyDown As EventHandler(Of KeyEventArgs)
public event EventHandler<KeyEventArgs> ShortcutKeyDown
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、KeyEventArgs 型の引数を受け取りました。次の KeyEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
AltGets a value indicating whether the ALT key was pressed.  
ControlGets a value indicating whether the CTRL key was pressed.  
HandledGets or sets a value indicating whether the event was handled.  
KeyCodeGets the keyboard code for a System.Windows.Forms.Control.KeyDown or System.Windows.Forms.Control.KeyUp event.  
KeyDataGets the key data for a System.Windows.Forms.Control.KeyDown or System.Windows.Forms.Control.KeyUp event.  
KeyValueGets the keyboard value for a System.Windows.Forms.Control.KeyDown or System.Windows.Forms.Control.KeyUp event.  
ModifiersGets the modifier flags for a System.Windows.Forms.Control.KeyDown or System.Windows.Forms.Control.KeyUp event. The flags indicate which combination of CTRL, SHIFT, and ALT keys was pressed.  
ShiftGets a value indicating whether the SHIFT key was pressed.  
SuppressKeyPressGets or sets a value indicating whether the key event should be passed on to the underlying control.  
解説
GcComboFrameでサポートされているショートカットキーの一覧を次の表に示します。
ショートカットキー アクション
[F4] ドロップダウンウィンドウを開閉します。
[Alt]+[↓] ドロップダウンウィンドウを開閉します。
[Alt]+[↑] ドロップダウンウィンドウを開閉します。
[Esc] ドロップダウンウィンドウを閉じます。
このイベントを処理してSystem.Windows.Forms.KeyEventArgs.Handledtrueに設定し、ショートカットキーのアクションをキャンセルすることもできます。
使用例
次のサンプルコードは、GcComboFrameのショートカットキーが押されたときに、ShortcutKeyDownイベントを使用してタスクを実行する方法を示します。この例では、ShortcutKeyDownイベントに接続されたイベントハンドラで、[Esc]ショートカットキーが押されたときにSystem.Windows.Forms.KeyEventArgs.Handledプロパティをtrueに設定し、[Esc]キーを押してもgcComboFram1のドロップダウンウィンドウが閉じないようにしています。このサンプルコードを実行するには、System.Windows.Forms.Formプロジェクトを作成し、GcComboFrameのインスタンスを追加して、以下のコードをプロジェクトに貼り付けます。そして、このイベントハンドラをShortcutKeyDownイベントに関連付けます。
private void GcComboFrame1_ShortcutKeyDown(object sender, KeyEventArgs e)
{
    // Forbid the process of Escape for GcComboFrame
    // and after setting the Handled to true, pressing
    // Esc can not close the drop-down window.
    if (e.KeyCode == Keys.Escape)
    {
        e.Handled = true;
    }
}
Private Sub GcComboFrame1_ShortcutKeyDown(ByVal sender As Object, ByVal e As KeyEventArgs)
    ' Forbid the process of Escape for GcComboFrame
    ' and after setting the Handled to true, pressing
    ' Esc can not close the drop-down window.
    If e.KeyCode = Keys.Escape Then
        e.Handled = True
    End If
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcComboFrame クラス
GcComboFrame メンバ
System.Windows.Forms.KeyEventArgs
System.Windows.Forms.KeyEventArgs

Send Feedback