Answers

Question and Answer:

  Home  Java GUI Framework

⟩ How to draw lines between JLabels on a JPanel?

You are apparently trying to draw a graph by using normal widgets to draw the nodes of your graph. This is not a good idea. Consider using the Java 2D API (nowadays part of J2SE) to draw the complete graph. Have a look at java.awt.geom for predefined shapes. Also check out Sun's 2D Programmer's Guide

 138 views

More Questions for you: