Vaadin - center custom component
问题 Using Grails 2.3.9 and Vaadin plugin 7.3.9 class MyUI extends UI { @Override protected void init(VaadinRequest vaadinRequest) { VerticalLayout layout = new VerticalLayout() layout.setMargin(true) SignInForm signInForm = new SignInForm() layout.addComponent(signInForm) layout.setComponentAlignment(signInForm, Alignment.MIDDLE_CENTER) layout.setSizeFull() setContent(layout) } } Custom component class SignInForm extends CustomComponent { Panel p = new Panel() public SignInForm() { p