2020-03-30 02:02:25 -07:00
|
|
|
<UserControl
|
2020-03-11 10:43:32 -07:00
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.Views.ShellPage"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2021-08-23 19:48:52 +02:00
|
|
|
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
|
2020-03-11 10:43:32 -07:00
|
|
|
xmlns:helpers="using:Microsoft.PowerToys.Settings.UI.Helpers"
|
|
|
|
|
xmlns:views="using:Microsoft.PowerToys.Settings.UI.Views"
|
|
|
|
|
xmlns:ic="using:Microsoft.Xaml.Interactions.Core"
|
|
|
|
|
xmlns:i="using:Microsoft.Xaml.Interactivity"
|
2021-12-07 18:22:27 +01:00
|
|
|
HighContrastAdjustment="None"
|
2020-03-11 10:43:32 -07:00
|
|
|
mc:Ignorable="d">
|
2022-04-19 22:00:28 +02:00
|
|
|
<!--TODO(stefan): Bring back Should be available in v1.1
|
|
|
|
|
BackdropMaterial.ApplyToRootOrPageBackground="True"-->
|
2020-03-11 10:43:32 -07:00
|
|
|
|
|
|
|
|
<i:Interaction.Behaviors>
|
|
|
|
|
<ic:EventTriggerBehavior EventName="Loaded">
|
|
|
|
|
<ic:InvokeCommandAction Command="{x:Bind ViewModel.LoadedCommand}" />
|
|
|
|
|
</ic:EventTriggerBehavior>
|
|
|
|
|
</i:Interaction.Behaviors>
|
|
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<Grid x:Name="RootGrid"
|
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
2020-03-30 02:02:25 -07:00
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationView x:Name="navigationView"
|
|
|
|
|
IsBackButtonVisible="Collapsed"
|
|
|
|
|
IsTitleBarAutoPaddingEnabled="False"
|
|
|
|
|
IsBackEnabled="{x:Bind ViewModel.IsBackEnabled, Mode=OneWay}"
|
|
|
|
|
SelectedItem="{x:Bind ViewModel.Selected, Mode=OneWay}"
|
|
|
|
|
IsSettingsVisible="False"
|
|
|
|
|
CompactModeThresholdWidth="1007"
|
|
|
|
|
ExpandedModeThresholdWidth="1007"
|
|
|
|
|
PaneOpened="NavigationView_PaneOpened"
|
|
|
|
|
PaneClosed="NavigationView_PaneClosed">
|
|
|
|
|
<muxc:NavigationView.Resources>
|
|
|
|
|
<SolidColorBrush x:Key="NavigationViewContentBackground"
|
|
|
|
|
Color="Transparent" />
|
|
|
|
|
<SolidColorBrush x:Key="NavigationViewContentGridBorderBrush"
|
|
|
|
|
Color="Transparent" />
|
2021-06-14 19:34:32 +02:00
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
</muxc:NavigationView.Resources>
|
|
|
|
|
<muxc:NavigationView.MenuItems>
|
|
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_General"
|
2021-09-19 16:22:39 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:GeneralPage">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsSettings.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
Espresso (#11303)
* Update README.md
* Espresso (#11245)
* Revert "Merge branch 'microsoft:master' into master"
This reverts commit b080908712557fce0e93a98e8d3bcb58fbd111fc, reversing
changes made to 8463c95a43a737532ae21dfa9aee1894a3a37dde.
* Fix conversion of settings in the UX
* Update terminology
* Updating logging configuration
* Set up how tray and setting configuration works
* Adding hero images
* Fix how binding works
* Update OOBE string
* Fix spelling error
* fixing dep to include espresso, adding in yml
* Update API components and fix display keep-awake bug
* Adding words that the spell check is yelling about
* tweak wsx
* Change default setting for Espresso
Co-authored-by: Niels Laute <niels9001@hotmail.com>
Co-authored-by: crutkas <crutkas@microsoft.com>
* Update Product.wxs
* Update Shortcut.cpp
* Update with more logging (#11332)
* Revert "Merge branch 'microsoft:master' into master"
This reverts commit b080908712557fce0e93a98e8d3bcb58fbd111fc, reversing
changes made to 8463c95a43a737532ae21dfa9aee1894a3a37dde.
* Fix conversion of settings in the UX
* Update terminology
* Updating logging configuration
* Set up how tray and setting configuration works
* Adding hero images
* Fix how binding works
* Update OOBE string
* Fix spelling error
* fixing dep to include espresso, adding in yml
* Update API components and fix display keep-awake bug
* Adding words that the spell check is yelling about
* tweak wsx
* Change default setting for Espresso
* Adding some extra logging
* Update Shortcut.cpp
Co-authored-by: Niels Laute <niels9001@hotmail.com>
Co-authored-by: crutkas <crutkas@microsoft.com>
* Fix minor issue in the module branch (#11340)
* Revert "Merge branch 'microsoft:master' into master"
This reverts commit b080908712557fce0e93a98e8d3bcb58fbd111fc, reversing
changes made to 8463c95a43a737532ae21dfa9aee1894a3a37dde.
* Fix conversion of settings in the UX
* Update terminology
* Updating logging configuration
* Set up how tray and setting configuration works
* Adding hero images
* Fix how binding works
* Update OOBE string
* Fix spelling error
* fixing dep to include espresso, adding in yml
* Update API components and fix display keep-awake bug
* Adding words that the spell check is yelling about
* tweak wsx
* Change default setting for Espresso
* Adding some extra logging
* Update Shortcut.cpp
* Fix log location coming from the runner
* More chatty logging for console allocation
* Installer config to add the missing assets
Co-authored-by: Niels Laute <niels9001@hotmail.com>
Co-authored-by: crutkas <crutkas@microsoft.com>
* Update Product.wxs
* Update Program.cs
* fixing typo
* removing a unneeded removal
* [Espresso] More minor tweaks to logging (#11341)
* Revert "Merge branch 'microsoft:master' into master"
This reverts commit b080908712557fce0e93a98e8d3bcb58fbd111fc, reversing
changes made to 8463c95a43a737532ae21dfa9aee1894a3a37dde.
* Fix conversion of settings in the UX
* Update terminology
* Updating logging configuration
* Set up how tray and setting configuration works
* Adding hero images
* Fix how binding works
* Update OOBE string
* Fix spelling error
* fixing dep to include espresso, adding in yml
* Update API components and fix display keep-awake bug
* Adding words that the spell check is yelling about
* tweak wsx
* Change default setting for Espresso
* Adding some extra logging
* Update Shortcut.cpp
* Fix log location coming from the runner
* More chatty logging for console allocation
* Installer config to add the missing assets
* Remove unused handle codes
* Update log file name for the Espresso C++ code.
* Update the project configuration to fix build issue
Co-authored-by: Niels Laute <niels9001@hotmail.com>
Co-authored-by: crutkas <crutkas@microsoft.com>
* Update patterns.txt
* Fix binding issues (#11368)
* Revert "Merge branch 'microsoft:master' into master"
This reverts commit b080908712557fce0e93a98e8d3bcb58fbd111fc, reversing
changes made to 8463c95a43a737532ae21dfa9aee1894a3a37dde.
* Fix conversion of settings in the UX
* Update terminology
* Updating logging configuration
* Set up how tray and setting configuration works
* Adding hero images
* Fix how binding works
* Update OOBE string
* Fix spelling error
* fixing dep to include espresso, adding in yml
* Update API components and fix display keep-awake bug
* Adding words that the spell check is yelling about
* tweak wsx
* Change default setting for Espresso
* Adding some extra logging
* Update Shortcut.cpp
* Fix log location coming from the runner
* More chatty logging for console allocation
* Installer config to add the missing assets
* Remove unused handle codes
* Update log file name for the Espresso C++ code.
* Update the project configuration to fix build issue
* Fix binding issue with the time settings
Co-authored-by: Niels Laute <niels9001@hotmail.com>
Co-authored-by: crutkas <crutkas@microsoft.com>
* Introduce the off mode and fix binding issues (#11385)
* Revert "Merge branch 'microsoft:master' into master"
This reverts commit b080908712557fce0e93a98e8d3bcb58fbd111fc, reversing
changes made to 8463c95a43a737532ae21dfa9aee1894a3a37dde.
* Fix conversion of settings in the UX
* Update terminology
* Updating logging configuration
* Set up how tray and setting configuration works
* Adding hero images
* Fix how binding works
* Update OOBE string
* Fix spelling error
* fixing dep to include espresso, adding in yml
* Update API components and fix display keep-awake bug
* Adding words that the spell check is yelling about
* tweak wsx
* Change default setting for Espresso
* Adding some extra logging
* Update Shortcut.cpp
* Fix log location coming from the runner
* More chatty logging for console allocation
* Installer config to add the missing assets
* Remove unused handle codes
* Update log file name for the Espresso C++ code.
* Update the project configuration to fix build issue
* Fix binding issue with the time settings
* Proper Espresso behavior for binding
* Fix settings UI
Co-authored-by: Niels Laute <niels9001@hotmail.com>
Co-authored-by: crutkas <crutkas@microsoft.com>
* Update with missing strings. (#11386)
* Revert "Merge branch 'microsoft:master' into master"
This reverts commit b080908712557fce0e93a98e8d3bcb58fbd111fc, reversing
changes made to 8463c95a43a737532ae21dfa9aee1894a3a37dde.
* Fix conversion of settings in the UX
* Update terminology
* Updating logging configuration
* Set up how tray and setting configuration works
* Adding hero images
* Fix how binding works
* Update OOBE string
* Fix spelling error
* fixing dep to include espresso, adding in yml
* Update API components and fix display keep-awake bug
* Adding words that the spell check is yelling about
* tweak wsx
* Change default setting for Espresso
* Adding some extra logging
* Update Shortcut.cpp
* Fix log location coming from the runner
* More chatty logging for console allocation
* Installer config to add the missing assets
* Remove unused handle codes
* Update log file name for the Espresso C++ code.
* Update the project configuration to fix build issue
* Fix binding issue with the time settings
* Proper Espresso behavior for binding
* Fix settings UI
* Re-add missing strings
Co-authored-by: Niels Laute <niels9001@hotmail.com>
Co-authored-by: crutkas <crutkas@microsoft.com>
* Fix whitespace issue (#11387)
* Revert "Merge branch 'microsoft:master' into master"
This reverts commit b080908712557fce0e93a98e8d3bcb58fbd111fc, reversing
changes made to 8463c95a43a737532ae21dfa9aee1894a3a37dde.
* Fix conversion of settings in the UX
* Update terminology
* Updating logging configuration
* Set up how tray and setting configuration works
* Adding hero images
* Fix how binding works
* Update OOBE string
* Fix spelling error
* fixing dep to include espresso, adding in yml
* Update API components and fix display keep-awake bug
* Adding words that the spell check is yelling about
* tweak wsx
* Change default setting for Espresso
* Adding some extra logging
* Update Shortcut.cpp
* Fix log location coming from the runner
* More chatty logging for console allocation
* Installer config to add the missing assets
* Remove unused handle codes
* Update log file name for the Espresso C++ code.
* Update the project configuration to fix build issue
* Fix binding issue with the time settings
* Proper Espresso behavior for binding
* Fix settings UI
* Re-add missing strings
* Fix whitespace issue
Co-authored-by: Niels Laute <niels9001@hotmail.com>
Co-authored-by: crutkas <crutkas@microsoft.com>
* Fix default (#11388)
* Revert "Merge branch 'microsoft:master' into master"
This reverts commit b080908712557fce0e93a98e8d3bcb58fbd111fc, reversing
changes made to 8463c95a43a737532ae21dfa9aee1894a3a37dde.
* Fix conversion of settings in the UX
* Update terminology
* Updating logging configuration
* Set up how tray and setting configuration works
* Adding hero images
* Fix how binding works
* Update OOBE string
* Fix spelling error
* fixing dep to include espresso, adding in yml
* Update API components and fix display keep-awake bug
* Adding words that the spell check is yelling about
* tweak wsx
* Change default setting for Espresso
* Adding some extra logging
* Update Shortcut.cpp
* Fix log location coming from the runner
* More chatty logging for console allocation
* Installer config to add the missing assets
* Remove unused handle codes
* Update log file name for the Espresso C++ code.
* Update the project configuration to fix build issue
* Fix binding issue with the time settings
* Proper Espresso behavior for binding
* Fix settings UI
* Re-add missing strings
* Fix whitespace issue
* Fix the default mode of operation
Co-authored-by: Niels Laute <niels9001@hotmail.com>
Co-authored-by: crutkas <crutkas@microsoft.com>
* Update Microsoft.PowerToys.Settings.UI.csproj
* Localization improvements
* Replaced a computer with your pc
* Updated Espresso imagery
* Fixed inconsistent string
* Margin fix and updated images
* Removed unused code
Co-authored-by: Den Delimarsky <1389609+dend@users.noreply.github.com>
Co-authored-by: Niels Laute <niels9001@hotmail.com>
Co-authored-by: crutkas <crutkas@microsoft.com>
Co-authored-by: Enrico Giordani <enrico.giordani@gmail.com>
2021-05-25 10:13:04 -07:00
|
|
|
|
2021-12-29 20:33:20 +03:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_AlwaysOnTop"
|
|
|
|
|
helpers:NavHelper.NavigateTo="views:AlwaysOnTopPage">
|
|
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsAlwaysOnTop.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
|
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_Awake"
|
2021-09-19 16:22:39 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:AwakePage">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsAwake.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
2020-05-08 14:13:48 -07:00
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_ColorPicker"
|
2021-09-19 16:22:39 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:ColorPickerPage">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsColorPicker.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
2020-03-27 16:58:53 +01:00
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_FancyZones"
|
2021-09-19 16:22:39 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:FancyZonesPage">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsFancyZones.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
2020-03-27 16:58:53 +01:00
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_PowerPreview"
|
2021-09-19 16:22:39 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:PowerPreviewPage">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsFileExplorerPreview.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
2020-03-27 16:58:53 +01:00
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_ImageResizer"
|
2021-09-19 16:22:39 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:ImageResizerPage">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsImageResizer.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
2020-03-31 14:32:22 +02:00
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_KeyboardManager"
|
2021-09-19 16:22:39 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:KeyboardManagerPage">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsKeyboardManager.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
2021-03-10 08:16:34 -08:00
|
|
|
|
2021-10-22 13:30:18 +01:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_MouseUtilities"
|
|
|
|
|
helpers:NavHelper.NavigateTo="views:MouseUtilsPage">
|
|
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsMouseUtils.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
|
|
|
|
|
2022-08-26 18:01:50 +02:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_PowerAccent"
|
|
|
|
|
helpers:NavHelper.NavigateTo="views:PowerAccentPage">
|
|
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsPowerAccent.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
|
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_PowerRename"
|
2021-09-19 16:22:39 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:PowerRenamePage">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsPowerRename.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
2022-08-25 05:25:52 -05:00
|
|
|
|
|
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_PowerOcr"
|
|
|
|
|
helpers:NavHelper.NavigateTo="views:PowerOcrPage">
|
|
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsPowerOcr.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
2021-08-23 19:48:52 +02:00
|
|
|
|
|
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_PowerLauncher"
|
2021-09-19 16:22:39 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:PowerLauncherPage">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsPowerToysRun.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
|
|
|
|
|
|
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_ShortcutGuide"
|
2021-09-19 16:22:39 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:ShortcutGuidePage">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsShortcutGuide.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
2021-06-29 13:06:12 +03:00
|
|
|
|
2021-10-07 16:48:45 +03:00
|
|
|
<muxc:NavigationViewItem x:Uid="Shell_VideoConference"
|
2021-08-23 19:48:52 +02:00
|
|
|
helpers:NavHelper.NavigateTo="views:VideoConferencePage"
|
2021-09-19 16:22:39 +02:00
|
|
|
IsEnabled="{x:Bind ViewModel.IsVideoConferenceBuild, Mode=OneWay}">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsVideoConferenceMute.png"
|
|
|
|
|
ShowAsMonochrome="False" />
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
2021-10-07 16:48:45 +03:00
|
|
|
</muxc:NavigationViewItem>
|
2021-06-29 13:06:12 +03:00
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
</muxc:NavigationView.MenuItems>
|
|
|
|
|
<muxc:NavigationView.PaneFooter>
|
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
|
<muxc:NavigationViewItem x:Uid="OOBE_NavViewItem"
|
2021-09-19 16:22:39 +02:00
|
|
|
Tapped="OOBEItem_Tapped">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<FontIcon Glyph=""/>
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
|
|
|
|
<muxc:NavigationViewItem x:Uid="Feedback_NavViewItem"
|
2021-09-19 16:22:39 +02:00
|
|
|
Tapped="FeedbackItem_Tapped">
|
2021-08-23 19:48:52 +02:00
|
|
|
<muxc:NavigationViewItem.Icon>
|
|
|
|
|
<FontIcon Glyph=""/>
|
|
|
|
|
</muxc:NavigationViewItem.Icon>
|
|
|
|
|
</muxc:NavigationViewItem>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</muxc:NavigationView.PaneFooter>
|
2020-03-30 02:02:25 -07:00
|
|
|
<i:Interaction.Behaviors>
|
2021-08-23 19:48:52 +02:00
|
|
|
<ic:EventTriggerBehavior EventName="ItemInvoked">
|
|
|
|
|
<ic:InvokeCommandAction Command="{x:Bind ViewModel.ItemInvokedCommand}" />
|
|
|
|
|
</ic:EventTriggerBehavior>
|
|
|
|
|
</i:Interaction.Behaviors>
|
|
|
|
|
<Frame x:Name="shellFrame" />
|
|
|
|
|
</muxc:NavigationView>
|
2020-03-27 16:58:53 +01:00
|
|
|
</Grid>
|
2021-10-07 16:48:45 +03:00
|
|
|
</UserControl>
|