我对添加按钮或容器的布局约束感到困难。我在添加以下顺序时遇到了上述错误。
Container1.setLayout(new BorderLayout()); // Container1 has Borderlayout as Layout Property .
My Button具有LayoutConstraint:West的属性。 当我将ComponentCompnent按钮添加到Container1时,我得到了上述错误..
请建议我如何设置LayoutConstraint属性..
答案 0 :(得分:6)
使用:
Container1.setLayout(new BorderLayout());
Container1.addComponent(BorderLayout.EAST, myComponent);
按宣传方式工作。