C#:ウィンドウショートカットの定義


重要なのは、FormのKeyPreviewプロパティを設定し、KeyDownイベントでキーを確認することです.
public class TEST : Form
{
    public TEST()
    {
        InitializeComponent();
    }

    private void TEST_Load(object sender, EventArgs e)
    {
        this.KeyPreview = true;
    }

    private void TEST_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.F1 && e.Control)
        {
            MessageBox.Show("Hello!"); 
        }
    }
}

参照:http://www.cnblogs.com/Asa-Zhu/archive/2012/11/08/2761086.html