Tagged Questions

0
votes
1answer
37 views

How to add scrollable JTextArea to jDesktopPane

I was try several opinion but neither of them it seams to work. This method returns JTextArea private static JTextArea getJArea() { if (jArea == null) { jArea = new JTextArea(); …
0
votes
1answer
56 views

Which components can be added in a JDesktopPane?

Hi everyone, I'm having some trouble designing an MDI Application with Swing. I have no trouble implementing the JDesktopPane & JInternalFrames, my question will be a little more specific. Here …
0
votes
2answers
273 views

Swing: How could I get JInternalFrame treated equally to other components inside a container?

Hello! Background information: I am implementing a visual diagram editor, which consists of different complex elements (re-sizable, with title bar, sub-elements) and different simple elements (not …