根据Vaadin文档设置Tab标题的问题请执行以下操作。
// Set an attribute using the returned reference
tabsheet.addTab(myTab).setCaption("My Tab");
使用Vaadin设计师时,您已经在设计中创建了一个Tab。
如何设置标签的名称?
答案 0 :(得分:0)
您可以先从设计中获取Tab,然后设置Tab的标题来解决此问题。 addTab()
会添加另一个标签。
// Set an attribute using the returned reference
tabsheet.getTab(myTab).setCaption("My Tab");