Hi team,
I am using custom Connectors and Connections along with MVVM. Per the thread, I can add some custom connection points in the overridden method GetConnectionContainerForItemOverride,
protectedoverrideIConnection GetConnectionContainerForItemOverride(objectitem){ if(item isLink) { ...return a custom connection object;
} returnnull;}Meanwhile I want to attach the connection to my custom connectors inside this method. However, at this time, the connectors of the shape still are the 5 default connectors. Are there any means to control the sequence of the overwritten methods? Or I should overwrite another virtual method?
Thanks,
Jingfei