...
By default, event hookups now use a generic delegate form:
Code Block |
---|
this.tvTreeView.NodeMouseClick += new System.EventHandler<TreeNodeMouseClickEventArgs>(this.tvTreeView_NodeClick); |
In the last release (5/30/2023), events hookup here modified to use the simplified form:
Code Block |
---|
thisthis.tvTreeView.NodeMouseClick += this.tvTreeView_NodeClick; |
Prior to the 5/30/2023 release, all events hookup used the specialized delegate form:
Code Block |
---|
thisthis.tvTreeView.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvTreeView_NodeClick); |
...