I draw two directed graphs in two different JPanels and when i click the button compile (RUN - COMPILARE) i need those graphs to repaint in one JPanel, any suggestions, tips, tutorials for that. I've searched but no results.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
It depends on how you draw them. If you use You can also override the merge panel's paintComponent() and call in the method with proper transform
|
|||
|
|
I think you should override the paintComponent method of that JPanel you want to repaint:
When the button is clicked, call JPanel.repaint(). For example,
|
|||
|
|
