20230724_MBJC_upperpc/Views/ProgressView.xaml

26 lines
966 B
Plaintext
Raw Normal View History

2023-12-23 03:35:57 +00:00
<UserControl
x:Class="_20230724_MBJC_upperpc.Views.ProgressView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:_20230724_MBJC_upperpc.Views"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
d:DesignHeight="450"
d:DesignWidth="800"
mc:Ignorable="d">
<Grid>
<StackPanel
Width="100"
HorizontalAlignment="Center"
VerticalAlignment="Center">
<ProgressBar
Width="40"
Height="40"
Margin="20"
IsIndeterminate="True"
Style="{StaticResource MaterialDesignCircularProgressBar}" />
<TextBlock Foreground="White" Text="正在加载,请稍等......" />
</StackPanel>
</Grid>
</UserControl>