1234567891011121314151617181920 |
- <Window x:Class="AIPractice.Labeller.UpgradeWindow"
- 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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:labeller="clr-namespace:AIPractice.Labeller"
- mc:Ignorable="d"
- Title="更新客户端" Height="200" Width="480" ResizeMode="NoResize" WindowStyle="None" Background="Transparent" WindowStartupLocation="CenterScreen" Topmost="True" AllowsTransparency="True">
- <Grid>
- <Border Background="White" BorderBrush="Gray" CornerRadius="4" BorderThickness="1"></Border>
- <TextBlock HorizontalAlignment="Center" Margin="20" FontSize="18.5" Text="客户端更新中,请勿关闭此窗口..." TextWrapping="Wrap"></TextBlock>
- <StackPanel VerticalAlignment="Center" Margin="20,60,20,20">
- <TextBlock x:Name="UpdateInfo" Text="更新中..." Margin="2"/>
- <ProgressBar x:Name="ProgressBar" Minimum="0" Maximum="100" Height="24" Margin="2"></ProgressBar>
- </StackPanel>
- <Viewbox x:Name="WaitingBox" Margin="0,60,0,0" VerticalAlignment="Center" HorizontalAlignment="Center" Width="96" Height="96">
- <labeller:WaitingSpinner x:Name="Waiting"/>
- </Viewbox>
- </Grid>
- </Window>
|