mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 04:37:30 +02:00
24 lines
1009 B
Plaintext
24 lines
1009 B
Plaintext
|
|
<!-- Copyright (c) Microsoft Corporation. All rights reserved. -->
|
||
|
|
<!-- Licensed under the MIT License. See LICENSE in the project root for license information. -->
|
||
|
|
|
||
|
|
<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:local="using:Microsoft.PowerToys.Settings.UI.OOBE.Views"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
Loaded="Page_Loaded"
|
||
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
||
|
|
|
||
|
|
<Grid Margin="0,24,0,0">
|
||
|
|
<ProgressRing
|
||
|
|
x:Name="LoadingProgressRing"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
IsIndeterminate="True"
|
||
|
|
Visibility="Visible" />
|
||
|
|
</Grid>
|
||
|
|
</Page>
|