21 lines
1.1 KiB
XML
21 lines
1.1 KiB
XML
<Window x:Class="Cowain.Bake.UI.CommonView.Views.ProgressBarView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
Background="{DynamicResource RegionBrush}"
|
|
mc:Ignorable="d"
|
|
Height="200" Width="380" WindowStartupLocation="CenterScreen" Title="加载中..."
|
|
>
|
|
<hc:TransitioningContentControl>
|
|
<hc:LoadingLine Margin="0,30" Foreground="BlueViolet" Style="{StaticResource LoadingLineLarge}"/>
|
|
<!--<StackPanel Margin="132" >
|
|
<Slider Value="50" Name="SliderDemo" Maximum="16"/>
|
|
<StackPanel Orientation="Horizontal" Margin="0,32,0,0">
|
|
<hc:CircleProgressBar IsIndeterminate="True" Height="200" Width="200" Margin="160,0,0,0"/>
|
|
</StackPanel>
|
|
</StackPanel>-->
|
|
</hc:TransitioningContentControl>
|
|
</Window>
|