gpt4 book ai didi

java - 如何在Vaadin中向Tab添加内容?

转载 作者:行者123 更新时间:2023-11-29 03:42:04 24 4
gpt4 key购买 nike

我有带标签的 tabSheet。

 TabSheet tabsheet = new TabSheet();
tabsheet.setSizeUndefined();
tabsheet.addTab(new Label("Contents of the first tab"),"Слои");
tabsheet.addTab(table, "Tab");
tabsheet.addTab(new Label("Contents of the third tab"),"Межевые планы");

现在我想将另一个组件添加到第二个选项卡,例如 horisontalLayout

  HorizontalLayout lo = new HorizontalLayout();
Button newContact = new Button();
Button search = new Button();
Button share = new Button();
Button help = new Button();
lo.addComponent(newContact);
lo.addComponent(search);
lo.addComponent(share);
lo.addComponent(help);

但是如何做到这一点呢?

最佳答案

准备布局:

    VerticalLayout l1 = new VerticalLayout();
l1.setMargin(true);
l1.addComponent(new Label("I am a label."));
... add your other components here.

然后将其添加到您的标签表中:

    TabSheet t = new TabSheet();
t.setHeight("200px");
t.setWidth("400px");
t.addTab(l1, "My Tab", icon1);

关于java - 如何在Vaadin中向Tab添加内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12703614/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com