wabbajack/Wabbajack.App/Screens/LauncherView.axaml

36 lines
2.2 KiB
Plaintext
Raw Normal View History

2021-09-30 04:03:43 +00:00
<UserControl xmlns="https://github.com/avaloniaui"
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"
2021-09-30 22:15:31 +00:00
xmlns:controls="clr-namespace:Wabbajack.App.Controls"
2021-09-30 04:03:43 +00:00
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
2021-09-30 12:23:43 +00:00
x:Class="Wabbajack.App.Screens.LauncherView">
2021-09-30 22:15:31 +00:00
<Grid RowDefinitions="*, Auto">
<Viewbox Grid.Row="0"
Name="Banner"
HorizontalAlignment="Center"
2021-09-30 04:03:43 +00:00
VerticalAlignment="Center"
2021-09-30 22:15:31 +00:00
Stretch="UniformToFill">
<Image x:Name="ModListImage" Margin="0,0,0,0" Source="../Assets/Wabba_Mouth.png" />
2021-09-30 04:03:43 +00:00
</Viewbox>
2021-09-30 22:15:31 +00:00
<Grid Grid.Row="0" RowDefinitions="40, 40" HorizontalAlignment="Left" VerticalAlignment="Bottom">
2021-10-23 16:51:17 +00:00
<TextBlock x:Name="ModListName" />
2021-09-30 22:15:31 +00:00
</Grid>
<Grid Margin="40" RowDefinitions="40, 40, 40, *" ColumnDefinitions="100, *, 200" Grid.Row="1">
<Label Grid.Column="0" Grid.Row="0" HorizontalAlignment="Right" VerticalAlignment="Center">ModList:</Label>
2021-10-23 16:51:17 +00:00
<TextBox Grid.Column="1" Grid.Row="0" IsEnabled="False" Height="20" x:Name="ModList" />
2021-09-30 22:15:31 +00:00
<Label Grid.Column="0" Grid.Row="1" HorizontalAlignment="Right" VerticalAlignment="Center">Location:</Label>
2021-10-23 16:51:17 +00:00
<TextBox Grid.Column="1" Grid.Row="1" IsEnabled="False" Height="20" x:Name="InstallPath" />
2021-09-30 22:15:31 +00:00
<Grid Grid.Column="1" Grid.Row="3" Grid.ColumnDefinitions="*, *, *" HorizontalAlignment="Center">
<Button Grid.Column="0" x:Name="WebsiteButton" Click="ShowWebsite">Website</Button>
<Button Grid.Column="1" x:Name="ReadmeButton" Click="ShowReadme">Readme</Button>
<Button Grid.Column="2" x:Name="LocalFilesButton" Click="ShowLocalFiles">Local Files</Button>
2021-09-30 22:15:31 +00:00
</Grid>
2021-10-23 16:51:17 +00:00
<controls:LargeIconButton x:Name="PlayGame" Margin="40, 0, 0, 0" Grid.Row="0" Grid.Column="2"
Grid.RowSpan="4" Icon="PlayCircle" Text="Play" />
2021-09-30 22:15:31 +00:00
</Grid>
2021-09-30 04:03:43 +00:00
</Grid>
2021-10-23 16:51:17 +00:00
</UserControl>