Any smart pattern to accomplish Bubbling and Tunneling for Events on Winforms?
Can we accomplish on Winforms both Tun开发者_JAVA百科neling and Bubbling? Maybe by using some API Message Interception? Any article about that?
Windows Forms was not designed to handle that. You would need to make your own event aggregator, implement your own visual or logical tree, etc, in order to make it work.
If you want this behavior, I recommend just using WPF.
精彩评论