1

我正在制作一个 Windows 窗体应用程序,并且form2我希望能够按下Alt+1打开form3. 我该怎么做?

我知道打开新表单的唯一代码是:

var myForm = new Form3();
myForm.Show();

...但是就像我说的那样,我需要知道如何通过按键而不是按键来激活它。

这是我为 form2 使用的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }

        private void pictureBox1_Click(object sender, EventArgs e)
        {
            var myForm = new Form2();
            myForm.Show();

        }
    }
}
4

1 回答 1

0

您首先需要订阅您的 form2 KeyDown 事件,然后您需要检查按下的键:

private void Form1_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.Alt && e.KeyCode == Keys.D1)//here you can choose any key you want
            {
                Form3 f3 = new Form3();
                f3.ShowDialog();
            }


        }

希望这可以帮助。

于 2013-06-16T23:28:37.903 回答