2

我确实对添加按钮或容器的布局约束感到困难。添加以下订单时出现上述错误。

Container1.setLayout(new BorderLayout()); // Container1 has Borderlayout as Layout Property .

我的 Button 具有 LayoutConstraint 的属性: West 。当我将组件按钮添加到 Container1 时,出现上述错误..

请建议我如何设置 LayoutConstraint 属性以及..

4

1 回答 1

7

利用:

 Container1.setLayout(new BorderLayout());
 Container1.addComponent(BorderLayout.EAST, myComponent);

像宣传的那样工作。

于 2013-01-31T08:46:45.703 回答