26 lines
966 B
Plaintext
26 lines
966 B
Plaintext
|
|
<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>
|