mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
a87f8dac7f
* added enderalse GOGID * Fix readme opening twice when loading last modlist * Edit Wabbajack CLI button text * Cancel running downloads when shutting down application * Add resume support for IHttpDownloader * Add resume support for manual downloads * Update CHANGELOG.md * Improve game selection to only show games with results combined with the amount of lists * Undo accidental removal of loading settings * Add more tooltips and improve existing ones * Update CHANGELOG.md * Main test external pull readme fix (#2335) * Fix SelectedGameType crashing Wabbajack when no settings are present yet, fix readme being clickable when not specified resulting in crash * Add readme fix to CHANGELOG, fix typo * Add readme button fix to changelog --------- Co-authored-by: UrbanCMC <UrbanCMC@web.de> Co-authored-by: Angad <angadmisra28@gmail.com> Co-authored-by: trawzified <55751269+tr4wzified@users.noreply.github.com> Co-authored-by: Timothy Baldridge <tbaldridge@gmail.com>
67 lines
2.9 KiB
XML
67 lines
2.9 KiB
XML
<UserControl
|
|
x:Class="Wabbajack.MO2InstallerConfigView"
|
|
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:icon="http://metro.mahapps.com/winfx/xaml/iconpacks"
|
|
xmlns:local="clr-namespace:Wabbajack"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" MinWidth="120" />
|
|
<ColumnDefinition Width="20" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="40" />
|
|
<RowDefinition Height="40" />
|
|
<RowDefinition Height="20" />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Grid.Row="0" Grid.Column="0"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
FontSize="14"
|
|
Text="Modlist Installation Location"
|
|
TextAlignment="Center"
|
|
ToolTip="The directory where the modlist will be installed" />
|
|
<local:FilePicker Grid.Row="0" Grid.Column="2"
|
|
Height="30"
|
|
VerticalAlignment="Center"
|
|
FontSize="14"
|
|
PickerVM="{Binding Location}"
|
|
ToolTip="The directory where the modlist will be installed" />
|
|
<TextBlock Grid.Row="1" Grid.Column="0"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
FontSize="14"
|
|
Text="Resource Download Location"
|
|
TextAlignment="Center"
|
|
ToolTip="The directory where modlist archives will be downloaded to" />
|
|
<local:FilePicker Grid.Row="1" Grid.Column="2"
|
|
Height="30"
|
|
VerticalAlignment="Center"
|
|
FontSize="14"
|
|
PickerVM="{Binding DownloadLocation}"
|
|
ToolTip="The directory where modlist archives will be downloaded to" />
|
|
<CheckBox Grid.Row="2" Grid.Column="2"
|
|
HorizontalAlignment="Right"
|
|
Content="Overwrite Installation"
|
|
IsChecked="{Binding AutomaticallyOverwrite}"
|
|
ToolTip="If installing over an existing installation, automatically replace it without asking permission.">
|
|
<CheckBox.Style>
|
|
<Style TargetType="CheckBox">
|
|
<Setter Property="Opacity" Value="0.6" />
|
|
<Style.Triggers>
|
|
<DataTrigger Binding="{Binding IsMouseOver, RelativeSource={RelativeSource Self}}" Value="True">
|
|
<Setter Property="Opacity" Value="1" />
|
|
</DataTrigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</CheckBox.Style>
|
|
</CheckBox>
|
|
</Grid>
|
|
</UserControl>
|