Users Pricing

forum

Home Forums Catch KeyUp Event on WinForm C# – MindStick

Catch KeyUp Event on WinForm C#

Anonymous User 3401 04 Sep 2013

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 ?


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md