C3032
2025-12-20 15492363f898704b51afce5f1c88fa3b754cbabc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Window x:Class="SmartScanner.LoadingWindow"
           xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Loading..." Height="150" Width="300" WindowStyle="None" 
        AllowsTransparency="True" Background="Transparent" 
        WindowStartupLocation="CenterScreen">
    <Border Background="#3C3C3C" CornerRadius="10">
        <StackPanel VerticalAlignment="Center" HorizontalAlignment="Center">
            <TextBlock x:Name="Loading" Text="软件加载中· · ·" Foreground="White" 
                       FontSize="16" Margin="0,10,0,10" />
            <ProgressBar IsIndeterminate="True" Width="250" Height="20"/>
        </StackPanel>
    </Border>
</Window>