2022-11-23 19:57:09 +01:00
|
|
|
<Page
|
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobeFileExplorer"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2023-09-14 18:41:31 +02:00
|
|
|
xmlns:custom="using:Microsoft.PowerToys.Settings.UI.Controls"
|
2022-11-23 19:57:09 +01:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:local="using:Microsoft.PowerToys.Settings.UI.OOBE.Views"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:toolkitcontrols="using:CommunityToolkit.WinUI.UI.Controls"
|
|
|
|
|
mc:Ignorable="d">
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2023-10-24 12:25:55 +02:00
|
|
|
<custom:OOBEPageControl x:Uid="Oobe_FileExplorer" HeroImage="ms-appx:///Assets/Settings/Modules/OOBE/FileExplorer.png">
|
2023-09-14 18:41:31 +02:00
|
|
|
<custom:OOBEPageControl.PageContent>
|
2024-01-03 14:42:12 +01:00
|
|
|
<StackPanel Orientation="Vertical" Spacing="12">
|
2023-10-24 12:25:55 +02:00
|
|
|
<TextBlock x:Uid="Oobe_HowToEnable" Style="{ThemeResource OobeSubtitleStyle}" />
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2023-10-24 12:25:55 +02:00
|
|
|
<toolkitcontrols:MarkdownTextBlock x:Uid="Oobe_FileExplorer_HowToEnable" Background="Transparent" />
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2024-01-03 14:42:12 +01:00
|
|
|
<StackPanel Orientation="Horizontal" Spacing="8">
|
2023-10-24 12:25:55 +02:00
|
|
|
<Button x:Uid="OOBE_Settings" Click="SettingsLaunchButton_Click" />
|
2024-01-03 14:42:12 +01:00
|
|
|
|
2023-10-24 12:25:55 +02:00
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview_FileExplorerAddOns" Style="{StaticResource TextButtonStyle}">
|
|
|
|
|
<TextBlock x:Uid="LearnMore_PowerPreview" TextWrapping="Wrap" />
|
2021-08-23 19:48:52 +02:00
|
|
|
</HyperlinkButton>
|
2021-03-02 20:56:37 +03:00
|
|
|
</StackPanel>
|
|
|
|
|
</StackPanel>
|
2023-09-14 18:41:31 +02:00
|
|
|
</custom:OOBEPageControl.PageContent>
|
|
|
|
|
</custom:OOBEPageControl>
|
2024-01-03 14:42:12 +01:00
|
|
|
</Page>
|