2
- VerticalLayout内のコンポーネントが、エッジからパディングされて配置されるのはなぜですか?
- この問題を解決するにはどうすればよいですか?
次のコードは、この問題を示しています。縦レイアウトの埋め込み
@Component
@UIScope
public class TestForm extends CustomComponent {
public TestForm() {
HorizontalLayout hlayout = new HorizontalLayout();
VerticalLayout vlayout = new VerticalLayout();
hlayout.setSizeFull();
vlayout.setStyleName("page");
Label label1 = new Label("Label1");
Label label2 = new Label("Label2");
hlayout.addComponent(label1);
vlayout.addComponent(label2);
hlayout.addComponent(vlayout);
setCompositionRoot(hlayout);
}
}
結果: enter image description here
ありがとうございます!
;':だから、あなたはそれになりたい場所に
label2
を入れて、あなたはに呼んでいます – Jouni