Handling child window messages with parent window handlers. [closed]
How can I handle all the child window messages with parent window handlers?
Just in case you are talking about .NET Winforms:
foreach (Control control in Controls) {
control.Click += myClickHandler;
}
Something similar might work with the super secret system you are using.
精彩评论