2022-11-23 19:57:09 +01:00
|
|
|
<Page
|
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobeOverview"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2024-01-12 18:01:40 +01:00
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
2022-11-23 19:57:09 +01:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2024-10-24 22:04:32 +02:00
|
|
|
xmlns:tkcontrols="using:CommunityToolkit.WinUI.Controls"
|
|
|
|
|
xmlns:ui="using:CommunityToolkit.WinUI"
|
2022-11-23 19:57:09 +01:00
|
|
|
mc:Ignorable="d">
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2024-01-26 17:12:33 +01:00
|
|
|
<controls:OOBEPageControl x:Uid="Oobe_Overview" HeroImage="ms-appx:///Assets/Settings/Modules/OOBE/PTHero.png">
|
2024-01-12 18:01:40 +01:00
|
|
|
<controls:OOBEPageControl.PageContent>
|
2024-01-03 14:42:12 +01:00
|
|
|
<StackPanel Orientation="Vertical" Spacing="12">
|
|
|
|
|
<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
|
|
|
|
|
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview" Style="{StaticResource TextButtonStyle}">
|
|
|
|
|
<TextBlock x:Uid="Oobe_Overview_DescriptionLinkText" TextWrapping="Wrap" />
|
|
|
|
|
</HyperlinkButton>
|
2021-08-23 19:48:52 +02:00
|
|
|
</StackPanel>
|
2024-10-24 22:04:32 +02:00
|
|
|
|
|
|
|
|
<StackPanel
|
|
|
|
|
Orientation="Vertical"
|
|
|
|
|
Spacing="8"
|
|
|
|
|
Visibility="{x:Bind ShowDataDiagnosticsSetting, Mode=OneWay, Converter={StaticResource BoolToVisibilityConverter}}">
|
|
|
|
|
<TextBlock
|
|
|
|
|
x:Uid="Oobe_Overview_Telemetry_Title"
|
|
|
|
|
Margin="0,20,0,0"
|
|
|
|
|
Style="{StaticResource SubtitleTextBlockStyle}" />
|
|
|
|
|
<TextBlock x:Uid="Oobe_Overview_Telemetry_Desc" Foreground="{ThemeResource TextFillColorSecondaryBrush}" />
|
|
|
|
|
|
|
|
|
|
<tkcontrols:SettingsCard
|
|
|
|
|
x:Uid="Oobe_Overview_EnableDataDiagnostics"
|
|
|
|
|
HeaderIcon="{ui:FontIcon Glyph=}"
|
|
|
|
|
IsEnabled="{x:Bind ShowDataDiagnosticsSetting, Mode=OneWay}">
|
|
|
|
|
<ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind EnableDataDiagnostics, Mode=TwoWay}" />
|
|
|
|
|
</tkcontrols:SettingsCard>
|
|
|
|
|
|
|
|
|
|
<HyperlinkButton
|
|
|
|
|
x:Uid="Oobe_Overview_DiagnosticsAndFeedback_Settings_Link"
|
|
|
|
|
Margin="-8,0,0,0"
|
|
|
|
|
Click="GeneralSettingsLaunchButton_Click" />
|
|
|
|
|
|
|
|
|
|
<HyperlinkButton
|
|
|
|
|
x:Uid="Oobe_Overview_DiagnosticsAndFeedback_Link"
|
|
|
|
|
Margin="-8,0,0,0"
|
|
|
|
|
NavigateUri="https://aka.ms/powertoys-data-and-privacy-documentation" />
|
|
|
|
|
|
|
|
|
|
</StackPanel>
|
2021-03-02 20:56:37 +03:00
|
|
|
</StackPanel>
|
2024-01-12 18:01:40 +01:00
|
|
|
</controls:OOBEPageControl.PageContent>
|
|
|
|
|
</controls:OOBEPageControl>
|
|
|
|
|
</Page>
|