WaitWindow.xaml 1.1 KB

12345678910111213141516
  1. <Window x:Class="MV485.Dlg.WaitWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="请稍候" WindowStartupLocation="CenterScreen" ResizeMode="NoResize" SizeToContent="WidthAndHeight"
  5. WindowStyle="None" AllowsTransparency="True" Background="Transparent">
  6. <Grid>
  7. <Border Background="White" CornerRadius="10" Padding="20" BorderBrush="Gray" BorderThickness="1">
  8. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  9. <!--<TextBlock Text="正在删除,请稍候..." FontSize="16" Margin="0,10" TextAlignment="Center"/>-->
  10. <TextBlock Text="{Binding TitleInfo}" FontSize="16" Margin="0,10" TextAlignment="Center"/>
  11. <!--<TextBlock x:Name="txtProgress" Visibility="Collapsed" FontSize="16" TextAlignment="Center" Margin="0,10"/>-->
  12. <ProgressBar IsIndeterminate="True" Width="200" Height="10" />
  13. </StackPanel>
  14. </Border>
  15. </Grid>
  16. </Window>