CommandBar在远项中溢出

时间:2019-06-13 09:38:25

标签: office-ui-fabric

CommandBar有两组菜单项itemsfarItems,还具有overflowItems,这些菜单项实际上是作为items的子菜单创建的。 / p>

是否有内置方法可以使overflowItems成为farItems的子菜单?

这是我目前正在实现的方式-不错,但是我只是想知道是否还有其他方法...

<CommandBar
  items={[ ..myMenuItems.. ]}
  farItems={[ 
      {
        key: 'more commands',
        ariaLabel: 'More',
        className: 'ms-CommandBar-overflowButton',
        menuIconProps:{
            iconName: 'More',
            className: 'customOverflowButton'
        },
        subMenuProps: {
            items: [ ..myOverflowItems.. ]
        }
    }]
  }
/>

1 个答案:

答案 0 :(得分:-1)

您也许可以按照弹性顺序简单地翻转它们。