我是vaadin
的新人,我需要一些帮助。我有一个Web应用程序看起来像Windows桌面应用程序,我想要与一些带链接的徽标页脚。 http://www.inovamer.com.tr/
喜欢这个。有谁可以解释我怎么能做到?
VerticalLayout footer = new VerticalLayout();
mainLayout.addComponent(footer);
mainLayout.setExpandRatio(content, 1);
我试图制作类似的东西,但并没有真正做出我想要的东西
答案 0 :(得分:0)
您的主要布局必须是完整尺寸。
VerticalLayout vlMain = new VerticalLayout();
vlMain.setSizeFull();
vlMain.addComponent(content);
vlMain.setExpandRatio(content, 1.0f);
VerticalLayout footer = new VerticalLayout();
vlMain.addComponent(footer);