Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以为像组件这样的 vaadin 组件提供动态边距component.setLeftMargin(10); 我知道我可以为水平布局设置边距,但我想将它设置为每个元素?
component.setLeftMargin(10);
有一种方法可以使用 ComponentPosition。获取组件在布局中的位置。如果组件未附加到布局,则返回 null。
this.getPosition(tsheet).setCSSString("top:0px;left:0px;right:0px;bottom:0px");