ProgressDialog.xaml 616 B

123456789101112
  1. <Window x:Class="MeterVision.ProgressDialog"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. ResizeMode="NoResize"
  5. WindowStartupLocation="CenterOwner"
  6. Topmost="True"
  7. Title="进度" Height="150" Width="300">
  8. <Grid>
  9. <ProgressBar x:Name="progressBar" HorizontalAlignment="Stretch" VerticalAlignment="Center" Height="30" Margin="10"/>
  10. <TextBlock x:Name="progressTextBlock" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="10" FontSize="14"/>
  11. </Grid>
  12. </Window>