mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
* UI improvements * buttons back on one line * fix Styler * adjust margin in OOBE page * Update src/settings-ui/Settings.UI/SettingsXAML/OOBE/Views/OobeOverview.xaml --------- Co-authored-by: Niels Laute <niels.laute@live.nl>
30 lines
1.6 KiB
XML
30 lines
1.6 KiB
XML
<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"
|
|
xmlns:custom="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
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">
|
|
|
|
<custom:OOBEPageControl x:Uid="Oobe_FileExplorer" HeroImage="ms-appx:///Assets/Settings/Modules/OOBE/FileExplorer.png">
|
|
<custom:OOBEPageControl.PageContent>
|
|
<StackPanel Orientation="Vertical" Spacing="12">
|
|
<TextBlock x:Uid="Oobe_HowToEnable" Style="{ThemeResource OobeSubtitleStyle}" />
|
|
|
|
<toolkitcontrols:MarkdownTextBlock x:Uid="Oobe_FileExplorer_HowToEnable" Background="Transparent" />
|
|
|
|
<StackPanel Orientation="Horizontal" Spacing="8">
|
|
<Button x:Uid="OOBE_Settings" Click="SettingsLaunchButton_Click" />
|
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview_FileExplorerAddOns" Style="{StaticResource TextButtonStyle}">
|
|
<TextBlock x:Uid="LearnMore_PowerPreview" TextWrapping="Wrap" />
|
|
</HyperlinkButton>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</custom:OOBEPageControl.PageContent>
|
|
</custom:OOBEPageControl>
|
|
</Page>
|