vote up 1 vote down star

Is there any way of removing the Component added to the CENTER of a JPanel with a BorderLayout, without having to reference the Component itself?

flag

1 Answer

vote up 3 vote down check

Something like this?

BorderLayout layout = panel.getLayout();
panel.remove(layout.getLayoutComponent(BorderLayout.CENTER));
link|flag
Cool. Had to modify it a bit, but it worked. Used it in this fashion: myPanel.remove(layout.getLayoutComponent(BorderLayout.CENTER); – Evan Fosmark Apr 17 at 7:40
nice one, I've updated my answer to reflect that change – ninesided Apr 17 at 7:47
You're both missing the closing parenthesis for the remove function ;) – Tom Martin Apr 17 at 11:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.