我试图抓住 F5,System.Windows.Forms
因为我写道:
partial class MainForm
{
(...)
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyUp);
(...)
}
public partial class MainForm : Form
{
(...)
private void MainForm_KeyUp(object sender, KeyEventArgs e)
{
Log("MainForm_KeyUp");
if (e.KeyCode == Keys.F5)
{
RefreshStuff();
}
}
}
但我的事件捕捉看起来不起作用。
你知道如何捕捉 EventKeySystem.Windows.Forms
吗?