Files
Better-Seewo/Installer/Pages/InstallPage.xaml

23 lines
1.2 KiB
Plaintext
Raw Normal View History

<Page x:Class="BetterSeewoInstaller.Pages.InstallPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Background="Transparent">
<Grid VerticalAlignment="Center">
<StackPanel>
<TextBlock Text="正在安装..." FontSize="18" FontWeight="SemiBold"
Foreground="{StaticResource TextPrimaryBrush}" Margin="0,0,0,16"/>
<Border Background="{StaticResource CardBrush}" CornerRadius="{StaticResource CornerRadiusMedium}" Padding="20" Margin="0,0,0,16">
<StackPanel>
<TextBlock x:Name="StatusText" Text="准备安装" FontSize="13" Foreground="{StaticResource TextPrimaryBrush}"/>
<TextBlock x:Name="DetailText" Text="请稍候" FontSize="12" Foreground="{StaticResource TextSecondaryBrush}" Margin="0,4,0,0"/>
</StackPanel>
</Border>
<ProgressBar x:Name="ProgressBar" Height="6" Minimum="0" Maximum="100" Value="0"
Foreground="{StaticResource AccentBrush}" Background="{StaticResource BorderBrush}"/>
</StackPanel>
</Grid>
</Page>