本文整理了Java中com.vaadin.ui.Window.setSizeFull()
方法的一些代码示例,展示了Window.setSizeFull()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Window.setSizeFull()
方法的具体详情如下:
包路径:com.vaadin.ui.Window
类名称:Window
方法名:setSizeFull
暂无
代码示例来源:origin: org.opennms.features/jmxconfiggenerator.webui
/**
* Creates the main window and adds the header, main and button panels to
* it.
*/
private void initMainWindow() {
Window window = new Window("JmxConfigGenerator GUI Tool");
VerticalLayout layout = new VerticalLayout();
layout.addComponent(headerPanel);
layout.addComponent(contentPanel);
// content Panel should use most of the space :)
layout.setExpandRatio(contentPanel, 1);
window.setContent(layout);
window.getContent().setSizeFull();
window.setSizeFull();
addWindow(window);
}
代码示例来源:origin: org.eclipse.hawkbit/hawkbit-ui
artifactDtlsWindow.setSizeFull();
artifactDetailsLayout.setFullWindowMode(true);
artifactDetailsLayout.createMaxArtifactDetailsTable();
代码示例来源:origin: eclipse/hawkbit
artifactDtlsWindow.setSizeFull();
artifactDetailsLayout.setFullWindowMode(true);
artifactDetailsLayout.createMaxArtifactDetailsTable();
内容来源于网络,如有侵权,请联系作者删除!