CommandBarFlyout.PrimaryCommands Property

Definition

Gets the collection of primary command elements for the CommandBarFlyout.

This documentation applies to WinUI 2 for UWP (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).

public:
 property IObservableVector<ICommandBarElement ^> ^ PrimaryCommands { IObservableVector<ICommandBarElement ^> ^ get(); };
IObservableVector<ICommandBarElement> PrimaryCommands();
public IObservableVector<ICommandBarElement> PrimaryCommands { get; }
Public ReadOnly Property PrimaryCommands As IObservableVector(Of ICommandBarElement)
<CommandBarFlyout>
    <CommandBarFlyout.PrimaryCommands>
      commandBarElements
    </CommandBarFlyout.PrimaryCommands>
</CommandBarFlyout>

Property Value

The collection of primary command elements for the CommandBarFlyout. The default is an empty collection.

Remarks

The PrimaryCommands collection can directly contain only AppBarButton, AppBarToggleButton, AppBarSeparator command elements. Other elements must be wrapped in an AppBarElementContainer.

The primary commands are shown in the command bar portion of the flyout.

Applies to

See also