具体来说,如果我有:
FormLayout formLayout = new FormLayout();
formLayout.add(new TextField("Label goes here"));
而不是 aFormLayout
我想使用 aVerticalLayout
但字段具有相同样式的标签。
VerticalLayout verticalLayout = new VerticalLayout();
Label label = new Label("Label goes here");
verticalLayout.add(label);
// setLabelStyleSameAsLabelForTextFieldInFormLayout();
换句话说,什么代码将替换该方法setLabelStyleSameAsLabelForTextFieldInFormLayout()
?
重要 ->我正在尝试以不涉及创建 CSS 的方式来做这件事,这样它就更有未来的证明。也就是说,如果 中的标签FormLayout
被更新,那么 中的标签也会被更新VerticalLayout
。