<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>
|