我想在表单处于活动状态时读取用户的输入。
例如,如果一个表单处于活动状态,当我按 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");
}
}
}
在我的设计文件中,我有一个文本框。