gpt4 book ai didi

gwt - TabLayoutPanel 将选项卡向右对齐

转载 作者:行者123 更新时间:2023-12-04 06:52:03 25 4
gpt4 key购买 nike

我在 GWT 中使用 TabLayoutPanel,我希望最后一个选项卡显示在页面的右侧。是否有可能做到这一点?

最佳答案

共同的想法:

  • 将标签容器宽度设置为“自动”而不是预定义的“16384px”
  • 将 "float: right"css 属性设置为最后一个选项卡
  • 将最后一个标签移到第一个位置
    public void onModuleLoad() {
    .....
    // init TabLayoutPanel
    .....
    Widget rightTab = tabPanel.getTabWidget(0).getParent();
    DOM.setStyleAttribute(rightTab.getElement(), "float", "right");
    Widget tabBar = rightTab.getParent();
    tabBar.setWidth("auto");
    tabPanel.selectTab(1);
    }
  • 关于gwt - TabLayoutPanel 将选项卡向右对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2981144/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com