12345678910111213141516 |
- <common:BaseWindow x:Class="ClickOnceSetup.InstallProcess"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:ClickOnceSetup"
- xmlns:common="clr-namespace:ClickOnceSetup.Common"
- mc:Ignorable="d"
- Title="InstallProcess" Height="450" Width="800" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" BorderThickness="2" BorderBrush="#6495ED">
- <Grid>
- <!--<ProgressBar HorizontalAlignment="Left" Height="56" Margin="30,178,0,0" VerticalAlignment="Top" Width="741"/>
- <Label Content="" HorizontalAlignment="Left" Margin="77,260,0,0" VerticalAlignment="Top" Width="648" Height="44" FontSize="20"/>-->
- <TextBlock x:Name="hint" TextWrapping="Wrap" Text="{ common:Translater InstallingHint }" Margin="154,50,50,231" FontSize="48" HorizontalAlignment="Center" Width="592" />
- <local:UCWaitingProgress x:Name="waitingProgress" Margin="0,241,0,109"></local:UCWaitingProgress>
- </Grid>
- </common:BaseWindow>
|