12345678910111213141516 |
- <Window x:Class="MV485.Dlg.WaitWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- 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" />
- </StackPanel>
- </Border>
- </Grid>
- </Window>
|