Reputation: 557
I have created a java frame. It contains a JSplitPane. In the right partition of the splitpane , I have put JTextPane. Now I have kept JButton somewhere on the frame. When I click the button, a new JTextArea is inserted in the JTextPane as follows
JTextArea newTextBox = new JTextArea(1, 1);
StyleConstants.setComponent(style, newTextBox);
My problem is as soon as I insert JTextArea in JTextPane, the maximize button of my JFrame disappears. Can anyone tell me what could be the reason of happning this.
Upvotes: 0
Views: 756
Reputation: 24801
Maxmize button is unavailable on two conditions:
So applying this to your case, my best guess is that somewhere in your button's action you may have made it unresizable.
Upvotes: 1