By default, all the tabs in a tabbed pane are displayed. When the tabs are wider than the width of the tabbed pane, they are displayed in rows. If space is an issue, it is possible to configure the tabs to appear in a single row along with a scroller that allows the tabs to be scrolled into view.

    // Create a tabbed pane
    JTabbedPane pane = new JTabbedPane();
    
    // Add some tabs...; see e830 向JTabbedPane中加入一个卡片
    // Get the number of rows of tabs
    int rows = pane.getTabRunCount();
    
    // Get the current layout policy
    int policy = pane.getTabLayoutPolicy(); // WRAP_TAB_LAYOUT
    
    // Configure the tabs to scroll
    pane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);

 

Related Examples

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-18
  • 2022-12-23
  • 2021-12-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案