I'm using a canvas to host various framework elements. Each framework element is itself a host to a DrawingVisual.
Each Framework element that is added at design time, appears fine (i.e. as expected) in the canvas at runtime.
For those framework elements added at runtime (canvas.children.add(new myframework...), they all have a red border. I stress the fact that I am definitely NOT drawing this border - I've even removed all drawing instructions and still a red border frames each control. If I reintroduce the drawing instructions, this red border appears OVER my drawing, so it appears to be something WPF is doing.
There is no XAML involved - it's simply a UserControl hosting a Canvas and it is to this canvas that the framework elements are added. The controls are all contained within the boundaries of the canvas and are not overlapping.
Can someone please explain why this border is appearing and how to get rid of it.
Thanks