Pg1st.xaml 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
<Page x:Class="Install.View.Pg1st"
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
      xmlns:local="clr-namespace:Install.View"
      mc:Ignorable="d" 
      d:DesignHeight="411" d:DesignWidth="605"
      Title="Pg1st">
    <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="248*" />
                <RowDefinition Height="auto" />
            </Grid.RowDefinitions>
            <Grid>

                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="142*" />
                    <ColumnDefinition Width="281*" />
                </Grid.ColumnDefinitions>
                <Grid>
                    <Grid.Background>
                        <ImageBrush ImageSource="/Images/a9dce02bce69ea10b.jpg" Stretch="UniformToFill" TileMode="None" />
                    </Grid.Background>
                </Grid>
            <Grid Grid.Column="1" Margin="10">
                <Grid.RowDefinitions>
                    <RowDefinition Height="auto" />
                    <RowDefinition Height="238*" />
                </Grid.RowDefinitions>
                <TextBlock HorizontalAlignment="Left" Margin="5" Text="欢迎使用 [FLY系列软件] 安装向导" FontWeight="Bold" FontSize="20" />
                <StackPanel Grid.Row="1" HorizontalAlignment="Left" Margin="5,20,5,5" VerticalAlignment="Top" Grid.Column="1" >
                    <TextBlock >
                        当前安装包版本号为: v<Run Foreground="Red" FontSize="20" Text="{Binding CurrentInstallZipVersion,Mode=OneWay}"/>
                    </TextBlock>
                    <TextBlock TextWrapping = "Wrap" >
                        <LineBreak/>
                        这个向导会指引你 完成[FLY 系列软件]的安装进程。<LineBreak/> 
                        在开始安装之前,建议先关闭其他所有应用程序。这将允许“安装程序”更新指定的系统文件,而不需要重新启动你的计算机。<LineBreak/> 
                        <LineBreak/> 
                        单击【下一步】继续。<LineBreak/>
                    </TextBlock>
                </StackPanel>

                
               
            </Grid>
        </Grid>
            <Grid Style="{StaticResource BottomPanel}" Grid.Row="1" >
                <StackPanel Style="{StaticResource BtnSp}">
                    <Button Content="下一步" Click="btNextClick" Style="{StaticResource NormalBtn}"/>
                </StackPanel>
            </Grid>

        </Grid>
    </Page>