- <Window x:Class="MeterVision.ProgressDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- ResizeMode="NoResize"
- WindowStartupLocation="CenterOwner"
- Topmost="True"
- Title="进度" Height="150" Width="300">
- <Grid>
- <ProgressBar x:Name="progressBar" HorizontalAlignment="Stretch" VerticalAlignment="Center" Height="30" Margin="10"/>
- <TextBlock x:Name="progressTextBlock" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="10" FontSize="14"/>
- </Grid>
- </Window>
|