I am drawing a line during runtime when the user clicks on 2 buttons basically linking them.
My code is something like:
Line l = new Line();
l.Size = new Size(#distance from button1 to button2 as width#)
l.Location = button1.Location
The problem is the buttons and other controls between the line overlays the line so it is only visible when there aren't any other controls inbetween.
How can I make the line on the top of other controls?