Child Widgets are:
In the following code, the child panel will be sized to 400 by 400 when the parent container is sized:
LayoutContainer container = new LayoutContainer(); container.setLayout(new FitLayout()); ContentPanel panel = new ContentPanel(); container.add(panel); container.setSize(400, 400);
@see FitData
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|