2023-10-24 12:25:55 +02:00
|
|
|
<!-- Copyright (c) Microsoft Corporation. All rights reserved. -->
|
|
|
|
|
<!-- Licensed under the MIT License. See LICENSE in the project root for license information. -->
|
2023-02-14 18:38:53 -08:00
|
|
|
|
|
|
|
|
<Page
|
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobeOverviewPlaceholder"
|
|
|
|
|
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"
|
2023-10-24 12:25:55 +02:00
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
|
2023-02-14 18:38:53 -08:00
|
|
|
Loaded="Page_Loaded"
|
2023-10-24 12:25:55 +02:00
|
|
|
mc:Ignorable="d">
|
2023-02-14 18:38:53 -08:00
|
|
|
|
2024-01-03 14:42:12 +01:00
|
|
|
<ProgressRing
|
|
|
|
|
x:Name="LoadingProgressRing"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
IsIndeterminate="True"
|
|
|
|
|
Visibility="Visible" />
|
2023-02-14 18:38:53 -08:00
|
|
|
</Page>
|