We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Samples for the Fluent CommandBar
Uno guidance: https://platform.uno/docs/articles/controls/CommandBar.html
Fluent guidance https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.commandbar?view=winrt-19041
<CommandBar Background="Transparent" IsOpen="False" DefaultLabelPosition="Right"> <AppBarButton Icon="Add" Label="Add"/> <AppBarButton Icon="Edit" Label="Edit"/> <AppBarButton Icon="Share" Label="Share"/> <CommandBar.SecondaryCommands> <AppBarButton Icon="Setting" Label="Settings"> <AppBarButton.KeyboardAccelerators> <KeyboardAccelerator Modifiers="Control" Key="I" /> </AppBarButton.KeyboardAccelerators> </AppBarButton> </CommandBar.SecondaryCommands> </CommandBar>
<CommandBar> <AppBarToggleButton Icon="Shuffle" Label="Shuffle" /> <AppBarToggleButton Icon="RepeatAll" Label="Repeat" /> <AppBarSeparator /> <AppBarButton Icon="Back" Label="Back" /> <AppBarButton Icon="Stop" Label="Stop" /> <AppBarButton Icon="Play" Label="Play" /> <AppBarButton Icon="Forward" Label="Forward" /> <CommandBar.SecondaryCommands> <AppBarButton Icon="Like" Label="Like" /> <AppBarButton Icon="Dislike" Label="Dislike" /> </CommandBar.SecondaryCommands> </CommandBar>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What would you like to be added:
Samples for the Fluent CommandBar
Uno guidance:
https://platform.uno/docs/articles/controls/CommandBar.html
Fluent guidance
https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.commandbar?view=winrt-19041
Why is this needed:
For which Platform:
Anything else we need to know?
The text was updated successfully, but these errors were encountered: