I have inherited from Connector and am doing some custom rendering on it. However, the Render method does not seem to be called when you are busy drawing the connector on the model (unless it isn't virtual?). Where is this drawing done?
RenderAction is the method you are looking for.
I thought so too, but the method is never called.
I found the problem. I forgot to override the Clone() method so the drawing was done on Connector objects instead of my class.