F
fh1996
Protected override void WndProc(ref Message m)
{
....
base.WndProc(ref m);
}
When should override the WndProc member of base class?
Can "Parent.WndProc(...)" be used to replace "base.WndProc(...)" in the
following code?
What's the meaning of "parent" in C#?
Why is it needed to call "base.WndProc(ref m);" at the end of the WndProc()?
Thanks!
{
....
base.WndProc(ref m);
}
When should override the WndProc member of base class?
Can "Parent.WndProc(...)" be used to replace "base.WndProc(...)" in the
following code?
What's the meaning of "parent" in C#?
Why is it needed to call "base.WndProc(ref m);" at the end of the WndProc()?
Thanks!