I’m inheriting a third party control and need to add steps for some events.
My old xaml:
<ThirdPartyControl Sorting="ThirdPartyControl_Sorting" />
My new xaml:
<MyInheritedControl Sorting="ThirdPartyControl_Sorting" />
In my inherited control i would implement the new steps and route the event back normally. How can i do this?
Does your third party control provide protected and virtual OnSorting method? If so, you can override it and do whatever you want and then call base implementation: