<Window x:Class="Update.MainWindow"
        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:local="clr-namespace:Update" xmlns:customcontrol="clr-namespace:Update.CustomControl"
        mc:Ignorable="d"
        Title="更新" Height="200" Width="200" FontSize="12" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Loaded="Window_Loaded">
    <Grid x:Name="processBarGrid" Background="#7F000000" >
        <customcontrol:RoundProcessBarLoading x:Name="waitProcessBar" Width="80" Margin="0,20,0,0" Height="80" VerticalAlignment="Top" HorizontalAlignment="Center"/>

        <Label x:Name="tipLabel" Content="处理中"  Foreground="White" Margin="10,105,9.6,0" VerticalContentAlignment="Center" HorizontalContentAlignment="Center"/>
    </Grid>
</Window>