CommandBar.CommandBarOverflowPresenterStyle Property

Definition

Gets or sets the Style applied to the overflow content of the 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>

Property Value

The applied Style for the overflow content of the CommandBar, if present; otherwise, null. The default is null.

Remarks

The Style element you use for a CommandBarOverflowPresenter value must specify TargetType="CommandBarOverflowPresenter".

You can style the properties of the internal CommandBarOverflowPresenter that is presenting the overflow content (SecondaryCommands) of a CommandBar. The properties that can be styled are the dependency properties of the base ItemsControl class or Control class, such as FontSize or Padding, or base element properties such as FrameworkElement.Margin that the CommandBarOverflowPresenter class inherits.

Applies to

See also