我正在尝试创建添加到Panel的TextField的水平布局,但它是垂直对齐的。
请参阅下面的代码;
HorizontalLayout horizontalLayout = new HorizontalLayout();
TextField txtUsername = new TextField("Username");
txtUsername.setRequired(true);
horizontalLayout.addComponent(txtUsername);
PasswordField txtPassword = new PasswordField("Password");
txtPassword.setRequired(true);
horizontalLayout.addComponent(txtPassword);
horizontalLayout.setStyleName("formLayout");
VerticalLayout panelLayout = new VerticalLayout(horizontalLayout);
setContent(panelLayout);