- Better-EN5 插件:基于官方示例,注册3个右键菜单项 - Manager 管理器:横版5标签布局,深色主题 WPF 应用 - 自定义 Fluent 安装器:无边框窗口,圆角,淡入淡出动画 - 删除旧代码,移除 SDK 自动安装器 - 三个项目全部编译通过(0 错误)
23 lines
1.2 KiB
XML
23 lines
1.2 KiB
XML
<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>
|