Skip to content

Commit ece30a5

Browse files
committed
Update InnerNavigationToolbar.xaml
1 parent f99c086 commit ece30a5

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

src/Files.App/UserControls/InnerNavigationToolbar.xaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,38 @@
508508
</AppBarButton>
509509

510510
</CommandBar.PrimaryCommands>
511+
512+
<CommandBar.SecondaryCommands>
513+
<!-- Open Terminal -->
514+
<AppBarButton
515+
x:Name="OpenTerminalButton"
516+
x:Load="{x:Bind Commands.OpenTerminal.IsExecutable, Mode=OneWay}"
517+
Command="{x:Bind Commands.OpenTerminal, Mode=OneWay}"
518+
KeyboardAcceleratorTextOverride="{x:Bind Commands.OpenTerminal.HotKeyText, Mode=OneWay}"
519+
Label="{x:Bind Commands.OpenTerminal.Label, Mode=OneWay}"
520+
LabelPosition="Default"
521+
ToolTipService.ToolTip="{x:Bind Commands.OpenTerminal.LabelWithHotKey, Mode=OneWay}" />
522+
523+
<!-- Open Storage Sense -->
524+
<AppBarButton
525+
x:Name="OpenStorageSenseButton"
526+
x:Load="{x:Bind Commands.OpenStorageSense.IsExecutable, Mode=OneWay}"
527+
Command="{x:Bind Commands.OpenStorageSense, Mode=OneWay}"
528+
KeyboardAcceleratorTextOverride="{x:Bind Commands.OpenStorageSense.HotKeyText, Mode=OneWay}"
529+
Label="{x:Bind Commands.OpenStorageSense.Label, Mode=OneWay}"
530+
LabelPosition="Default"
531+
ToolTipService.ToolTip="{x:Bind Commands.OpenStorageSense.LabelWithHotKey, Mode=OneWay}" />
532+
533+
<!-- Format Drive -->
534+
<AppBarButton
535+
x:Name="FormatDriveButton"
536+
x:Load="{x:Bind Commands.FormatDrive.IsExecutable, Mode=OneWay}"
537+
Command="{x:Bind Commands.FormatDrive, Mode=OneWay}"
538+
KeyboardAcceleratorTextOverride="{x:Bind Commands.FormatDrive.HotKeyText, Mode=OneWay}"
539+
Label="{x:Bind Commands.FormatDrive.Label, Mode=OneWay}"
540+
LabelPosition="Default"
541+
ToolTipService.ToolTip="{x:Bind Commands.FormatDrive.LabelWithHotKey, Mode=OneWay}" />
542+
</CommandBar.SecondaryCommands>
511543
</CommandBar>
512544

513545
<!-- Base Commands -->

0 commit comments

Comments
 (0)