F
Frank T. Clark
How do I redirect or capture keydown events in a parent form from a child
form?
I have a main form which displays another informational form marked
"SizableToolWindow".
Form child = new ChildForm();
this.AddOwnedForm (child);
child.Show();
I don't want the child form to be active just to show information. I do want
the user to be able to move the form and change the size. How do I make sure
that the information from any keydown events goes to the parent form?
I have programmed extensively in C using the Win32 API but I am only
starting with C#.
form?
I have a main form which displays another informational form marked
"SizableToolWindow".
Form child = new ChildForm();
this.AddOwnedForm (child);
child.Show();
I don't want the child form to be active just to show information. I do want
the user to be able to move the form and change the size. How do I make sure
that the information from any keydown events goes to the parent form?
I have programmed extensively in C using the Win32 API but I am only
starting with C#.