123456789101112131415161718192021222324252627282930 |
- <Window x:Class="vCloud.Windows.ForceUpgrade.MainWindow"
- 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:vCloud.Windows.ForceUpgrade"
- mc:Ignorable="d"
- Title="MainWindow" Height="385" Width="581" AllowDrop="True" Background="CadetBlue" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" BorderThickness="1" BorderBrush="#6495ED">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="80*"></RowDefinition>
- <RowDefinition Height="20*"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="20*"></ColumnDefinition>
- <ColumnDefinition Width="80*"></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <StackPanel Grid.Row="1" Grid.ColumnSpan="2" Width="500" VerticalAlignment="Bottom" HorizontalAlignment="Left" Margin="20,0,0,5">
- <Label x:Name="InstallContent" Content="{Binding Source={x:Static local:App.GetTitle }}"/>
- </StackPanel>
- <StackPanel Grid.Row="1" Grid.Column="2" VerticalAlignment="Top" HorizontalAlignment="Right" Margin="0,5,20,0">
- <Label x:Name="InstallProcess" Content="1%"/>
- </StackPanel>
- <StackPanel Grid.Row="0" Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,135,115,0">
- <Label x:Name="InstallVersion" Content="{Binding Source={x:Static local:App.GetVersion }}" Foreground="White"/>
- </StackPanel>
- <StackPanel x:Name="ProcessImage" Height="13" Width="551" Margin="14,32,14,30" Grid.Row="1" Grid.ColumnSpan="2" Background="White" />
- <Label Grid.Row="0" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Top" Width="50" Height="50" MouseDown="Label_MouseDown"/>
- </Grid>
- </Window>
|