如何使用vaadin子窗口中的按钮隐藏顶部面板? 我需要隐藏子窗口上的导航栏,关闭按钮时显示的栏是什么。
Window window = new Window();
VerticalLayout vertical = (VerticalLayout) window.getContent();
vertical.setMargin(true);
vertical.setSpacing(true);
vertical.setSizeFull();
window.addComponent(componetn);
window.setWidth(width);
window.setHeight(heigth);
window.setResizable(false);
window.setModal(false);
window.setBorder(0);
getMainWindow().addWindow( window);