1234567891011121314151617181920212223 |
- <Window x:Class="MV485.Dlg.WaitUpgradeWindow"
- 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:MV485.Dlg"
- mc:Ignorable="d"
- Title="请稍候" WindowStartupLocation="CenterScreen" ResizeMode="NoResize" SizeToContent="WidthAndHeight"
- WindowStyle="None" AllowsTransparency="True" Background="Transparent">
- <Grid>
- <Border Background="White" CornerRadius="10" Padding="20" BorderBrush="Gray" BorderThickness="1">
- <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
- <!--<TextBlock Text="正在删除,请稍候..." FontSize="16" Margin="0,10" TextAlignment="Center"/>-->
- <TextBlock Text="{Binding TitleInfo}" FontSize="16" Margin="0,10" TextAlignment="Center"/>
- <!--<TextBlock x:Name="txtProgress" Visibility="Collapsed" FontSize="16" TextAlignment="Center" Margin="0,10"/>-->
- <ProgressBar IsIndeterminate="True" Width="200" Height="10" />
- <Button x:Name="btnStop" Click="BtnStop_Click"
- Content="中止升级" FontSize="14" Width="80" Margin="0 10 0 10" Padding="5" />
- </StackPanel>
- </Border>
- </Grid>
- </Window>
|