I attempt to catch F5 on System.Windows.Forms for that I wrote:
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(); } } } But my event catching looks not working.
Do you know how to cactch EventKey on System.Windows.Forms ?
KeyUpevent toMainForm_KeyUp. So that is inInitializeComponent()called by constructor ofMainForm.