InstallProcessWindow.xaml 1.2 KB

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