1

我想在表单处于活动状态时读取用户的输入。

例如,如果一个表单处于活动状态,当我按 F1 时,我希望会出现一个新表单。

我怎样才能做到这一点?

这是我的主要形式

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;
using DevComponents.DotNetBar;

namespace SchoolManagmentSystem.Forms
{
    public partial class AddStudent : Office2007Form
    {
        public AddStudent()
        {
            InitializeComponent();
        }



        private void buttonX3_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void AddStudent_KeyDown(object sender, KeyEventArgs e)
        {

            if (e.KeyCode == Keys.F3)
                MessageBox.Show("hi");
        }        
    }
}

在我的设计文件中,我有一个文本框。

4

1 回答 1

3
private void AddStudent_KeyDown(object sender, KeyEventArgs e)
{
    if(e.KeyCode == Keys.F1) 
    {
       // do your stuff
    }
}

然后在您的构造函数中添加以下内容:

public AddStudent()
{
    InitializeComponent();
    this.KeyDown +=new System.Windows.Forms.KeyEventHandler(AddStudent_KeyDown);
}
于 2013-06-06T20:51:28.013 回答