BOB/BaseFrame/Views/ProgressView.xaml
2025-11-04 10:27:48 +08:00

24 lines
1.0 KiB
XML

<UserControl x:Class="BaseFrame.Views.ProgressView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:BaseFrame.Views"
mc:Ignorable="d"
d:DesignHeight="450"
d:DesignWidth="800">
<Grid Background="Transparent">
<StackPanel Width="150"
VerticalAlignment="Center"
Margin="0 0 0 100"
>
<ProgressBar Width="80"
Height="80"
Margin="20"
IsIndeterminate="True"
Style="{StaticResource MaterialDesignCircularProgressBar}" />
<TextBlock FontSize="30" Text="加载中......" HorizontalAlignment="Center"/>
</StackPanel>
</Grid>
</UserControl>