| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <Window x:Class="Muchinfo.MTPClient.Update.UpdateForm"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Width="500"
- Height="200"
- AllowsTransparency="True"
- Background="Transparent"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None">
- <Window.Resources>
- <Style TargetType="{x:Type TextBlock}">
- <Setter Property="Foreground" Value="#ff333333" />
- </Style>
- </Window.Resources>
- <Border Background="#ffffffff"
- BorderBrush="#ff2675C4"
- BorderThickness="4">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="32" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Grid Grid.Row="0" Background="#ff2675C4">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto" />
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="auto" />
- </Grid.ColumnDefinitions>
- <Image Grid.Column="0"
- Width="24"
- Height="24"
- Source="{StaticResource WindowIconImageSource}" />
- <TextBlock Name="txt_Title"
- Grid.Column="1"
- Margin="5,0"
- VerticalAlignment="Center"
- FontSize="14"
- Foreground="#ffffffff" />
- <Button Name="bnt_Close"
- Grid.Column="2"
- Style="{StaticResource CloseButtonStyle}" />
- </Grid>
- <Grid Grid.Row="1"
- Grid.ColumnSpan="2"
- Margin="5">
- <Grid.RowDefinitions>
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0" Orientation="Horizontal">
- <ProgressBar Name="pbTotal"
- Width="450"
- Height="24" />
- <TextBlock x:Name="tbControl"
- Margin="5"
- VerticalAlignment="Center"
- Text="0%" />
- </StackPanel>
- <StackPanel Grid.Row="1" Orientation="Horizontal">
- <ProgressBar Name="pbCurrent"
- Width="450"
- Height="24" />
- <TextBlock x:Name="tbCurrentControl"
- Margin="5"
- VerticalAlignment="Center"
- Text="0%" />
- </StackPanel>
- <TextBlock x:Name="tbMessage"
- Grid.Row="2"
- Width="450"
- VerticalAlignment="Center"
- Text="正在准备文件信息"
- TextWrapping="Wrap" />
- </Grid>
- </Grid>
- </Border>
- </Window>
|