Implement design for initial installer starting page.

This commit is contained in:
Greg
2022-04-25 23:38:34 -06:00
parent de2f12f451
commit ccd28cedaa
6 changed files with 69 additions and 8 deletions
@@ -3,12 +3,70 @@
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:SetupBA.MVVM.View" xmlns:skins="clr-namespace:SimpleUI.Skins;assembly=SimpleUI"
xmlns:local="clr-namespace:SetupBA.MVVM.View"
xmlns:skins="clr-namespace:SimpleUI.Skins;assembly=SimpleUI"
xmlns:simpleControls="clr-namespace:SimpleUI.Controls;assembly=SimpleUI"
mc:Ignorable="d"
Width="600" Height="500">
Width="580" Height="380">
<Border Background="{DynamicResource WindowBackground}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="50"/>
</Grid.RowDefinitions>
<!-- Main View Area -->
<StackPanel Orientation="Vertical">
<Image Source="pack://application:,,,/SetupBA;component/Resources/Header.png"
RenderOptions.BitmapScalingMode="Fant"
RenderOptions.EdgeMode="Aliased"
Name="TitleImage"/>
<TextBlock Text="Welcome to the Orbis Suite 3.0 Setup Wizard."
FontSize="22"
FontWeight="Bold"
TextWrapping="Wrap"
Foreground="White"
HorizontalAlignment="Center"
Margin="20 20 20 0"/>
<TextBlock Text="The next version of Orbis Suite completely rewritten with a new GUI. Now launchable through a homebrew app gone is the need for a payload! Fully featured suite of tools to help aid in developing and debugging on the PS4 console."
FontSize="18"
TextWrapping="Wrap"
TextAlignment="Center"
Foreground="White"
HorizontalAlignment="Center"
Margin="30 35 30 0"/>
</StackPanel>
<!-- Button Area -->
<StackPanel Orientation="Horizontal"
HorizontalAlignment="Right"
Grid.Row="1"
Margin="0 0 10 10">
<!-- Cancel -->
<simpleControls:SimpleButton HorizontalAlignment="Right"
VerticalAlignment="Center"
Grid.Column="1" Grid.Row="1"
Content="Cancel" x:Name="Cancel"
Width="75" Height="26"
Margin="0 0 8 0"/>
<!-- Save -->
<simpleControls:SimpleButton HorizontalAlignment="Right"
VerticalAlignment="Center"
Grid.Column="1" Grid.Row="1"
Content="Next" x:Name="Next"
Width="75" Height="26"
Margin="0 0 8 0"/>
</StackPanel>
</Grid>
</Border>
</UserControl>
@@ -11,7 +11,7 @@
mc:Ignorable="d"
Title="Orbis Suite Installer"
Width="600" MinWidth="600"
Height="400" MinHeight="400">
Height="430" MinHeight="430">
<simpleControls:SimpleWindow.Resources>
<ResourceDictionary>
Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

+4 -1
View File
@@ -112,8 +112,11 @@
<None Include="BootstrapperCore.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<Folder Include="Resources\" />
<Resource Include="Resources\Header.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
@@ -1 +1 @@
1005
1009
@@ -1 +1 @@
Version 3.0.1005 Release Build Monday April 25 2022 11:09 PM
Version 3.0.1009 Release Build Monday April 25 2022 11:23 PM