2021-10-11 12:12:24 +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"
|
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
|
|
xmlns:i="clr-namespace:Material.Icons.Avalonia;assembly=Material.Icons.Avalonia"
|
2021-10-12 03:49:01 +00:00
|
|
|
xmlns:controls="clr-namespace:Wabbajack.App.Controls"
|
2021-10-11 12:12:24 +00:00
|
|
|
x:Class="Wabbajack.App.Screens.CompilerConfigurationView">
|
2021-10-12 03:49:01 +00:00
|
|
|
<Grid RowDefinitions="40, *, 40">
|
2021-10-11 12:12:24 +00:00
|
|
|
<TextBlock Grid.Row="0" x:Name="StatusText" FontSize="20" FontWeight="Bold">Compiler Configuration</TextBlock>
|
2021-10-12 03:49:01 +00:00
|
|
|
<Grid Grid.Row="1" ColumnDefinitions="Auto, *" RowDefinitions="Auto, Auto, Auto, Auto, Auto" Margin="4">
|
|
|
|
<Label Grid.Column="0" Grid.Row="0" HorizontalAlignment="Right">Title:</Label>
|
|
|
|
<TextBox Grid.Column="1" Grid.Row="0" x:Name="Title"></TextBox>
|
|
|
|
<Label Grid.Column="0" Grid.Row="1" HorizontalAlignment="Right">Settings File:</Label>
|
|
|
|
<controls:FileSelectionBox Grid.Column="1" Grid.Row="1" x:Name="SettingsFile"
|
|
|
|
AllowedExtensions=".txt|.json">
|
|
|
|
</controls:FileSelectionBox>
|
|
|
|
<Label Grid.Column="0" Grid.Row="2" HorizontalAlignment="Right">Mod List Folder:</Label>
|
|
|
|
<controls:FileSelectionBox Grid.Column="1" Grid.Row="2" x:Name="BaseFolder" SelectFolder="True"></controls:FileSelectionBox>
|
|
|
|
<Label Grid.Column="0" Grid.Row="3" HorizontalAlignment="Right">Downloads Folder:</Label>
|
|
|
|
<controls:FileSelectionBox Grid.Column="1" Grid.Row="3" x:Name="DownloadsFolder" SelectFolder="True"></controls:FileSelectionBox>
|
|
|
|
<Label Grid.Column="0" Grid.Row="4" HorizontalAlignment="Right">Base Game:</Label>
|
|
|
|
<ComboBox Grid.Column="1" Grid.Row="4" x:Name="BaseGame">
|
|
|
|
<ComboBox.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<TextBlock Text="{Binding Path=HumanFriendlyGameName}"></TextBlock>
|
|
|
|
</DataTemplate>
|
|
|
|
</ComboBox.ItemTemplate>
|
|
|
|
</ComboBox>
|
|
|
|
</Grid>
|
|
|
|
<Grid ColumnDefinitions="*, Auto" Grid.Row="2">
|
|
|
|
<Button Grid.Column="1" x:Name="StartCompilation">
|
|
|
|
<TextBlock>Start Compilation</TextBlock>
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
2021-10-11 12:12:24 +00:00
|
|
|
</Grid>
|
|
|
|
</UserControl>
|