CommandBar.CommandBarOverflowPresenterStyle 属性

定义

获取或设置应用于 CommandBar 溢出内容的样式

public:
 property Style ^ CommandBarOverflowPresenterStyle { Style ^ get(); void set(Style ^ value); };
Style CommandBarOverflowPresenterStyle();

void CommandBarOverflowPresenterStyle(Style value);
public Style CommandBarOverflowPresenterStyle { get; set; }
var style = commandBar.commandBarOverflowPresenterStyle;
commandBar.commandBarOverflowPresenterStyle = style;
Public Property CommandBarOverflowPresenterStyle As Style
<CommandBar CommandBarOverflowPresenterStyle={StaticResource styleResourceKey}/>
- or -
<CommandBar>
  <CommandBar.CommandBarOverflowPresenterStyle>
    <Style TargetType="CommandBarOverflowPresenter">
      oneOrMoreSetters
    </Style>
  </CommandBar.CommandBarOverflowPresenterStyle>
</CommandBar>

属性值

为 CommandBar 的溢出内容应用样式(如果存在);否则为 null。 默认值为 null

注解

用于 CommandBarOverflowPresenter 值的 Style 元素必须指定 TargetType="CommandBarOverflowPresenter"

可以设置 内部 CommandBarOverflowPresenter 的属性的样式,该命令 (SecondaryCommands) 显示溢出内容。 可设置样式的属性是基 ItemsControl 类或 Control 类(如 FontSizePadding)的依赖属性,或 CommandBarOverflowPresenter 类继承的基本元素属性(如 FrameworkElement.Margin)。

适用于

另请参阅