Microsoft Visual Studio Projects DISCUSSION

Trapping Key presses in C# Child form

Started by syedzainnasir Trapping Key presses in C# Child form
0 replies 248 views 1 participants
Latest activity · 07 Mar 2017

Trapping Key presses in C# Child form

syedzainnasir Microsoft Visual Studio Projects Forum
#1
I have seen several posts about trapping keys presses but none specific to child forms. In the code fragments below Key presses are trapped when the focus is the parent form but not when the focus is the child form. What else do I need to do to trap those also? I would also like to be able to trap arrow keys in the child form if possible. Unrelated code deleted. [code]public partial class Main : Form { private void btGraph_Click(object sender, EventArgs e) { Graph WaveGraph = new Graph("Waveform"); other code placing graphics on the form } // need to trap arrow keys. protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { if (keyData == Keys.Up) { MessageBox.Show("Up key pressed"); return true; } return base.ProcessCmdKey(ref msg, keyData); } } class Graph { public Graph(string name) { GraphForm = new Form(); GraphForm.Name = name; GraphForm.KeyPress += new KeyPressEventHandler(OnKeyPress); GraphForm.KeyPreview = true; } // The message box never appears private void OnKeyPress(object sender, KeyPressEventArgs e) { string KeyString = e.KeyChar.ToString(); MessageBox.Show("A key was pressed"); return; } }[/code]

Community replies 0

Be the first to help

There are no replies yet.

TEP COMMUNITY