mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
fab17a6ae0
* added more visible error messages to avoid user confusion added hard drive free space detection, added red error message text, removed overwrite checkbox, added wiki button link extended the error text for starting wabbajack in protected location removed debug code shortened error message to fit in text box * restored warning removed in error, updated changelog, removed debug includes * Update InstallerVM.cs * Update InstallerVM.cs * Update MainWindowViewModel.cs * added json optional flag to only show version number over modlist image in installer view, if the modlist image already contains the title removed debug code change to pascal case and match existing code style update changelog * Fix manual downloads sometimes launching in browser * Fix manual downloads from secure servers * Remove duplicate user agent code * Create configuration project and performance settings * Bind new performance settings to UI * Use performance settings to limit maximum memory per download * Remove unused settings and related classes * Updated CHANGELOG.md * update CHANGELOG.md * moved the existing files popup to an error message , heralding the return of the overwrite install checkbox * added newline * reverted erroneous edit * gogID for fallout4 added * update CHANGELOG.md * Fix deadlock when loading new settings * change folder/directory check logic * update CHANGELOG.md * revert unnecessary change * update CHANGELOG.md * Bump Wabbajack to .NET 7 * Bump ReactiveUI packages & deps * Update GameFinder to 4.0.0 * Update CHANGELOG.md * Update CHANGELOG.md --------- Co-authored-by: JanuarySnow <bobfordiscord12@gmail.com> Co-authored-by: JanuarySnow <85711747+JanuarySnow@users.noreply.github.com> Co-authored-by: UrbanCMC <UrbanCMC@web.de> Co-authored-by: trawzified <55751269+tr4wzified@users.noreply.github.com>
127 lines
5.7 KiB
XML
127 lines
5.7 KiB
XML
<rxui:ReactiveUserControl
|
|
x:Class="Wabbajack.InstallationConfigurationView"
|
|
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"
|
|
xmlns:rxui="http://reactiveui.net"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
x:TypeArguments="local:InstallerVM"
|
|
mc:Ignorable="d">
|
|
<Grid Background="{StaticResource WindowBackgroundBrush}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="20" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid Grid.Column="0"
|
|
Margin="5"
|
|
VerticalAlignment="Center"
|
|
Background="Transparent">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="5" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" MinWidth="120" />
|
|
<ColumnDefinition Width="20" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Rectangle x:Name="InstallConfigSpacer" Grid.Row="0" />
|
|
<TextBlock Grid.Row="1" Grid.Column="0"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
FontSize="14"
|
|
Text="Target Modlist"
|
|
TextAlignment="Center" />
|
|
<TextBlock x:Name="errorTextBox"
|
|
Grid.Row="3"
|
|
FontFamily="Verdana" FontSize="10" FontWeight="ExtraBold"
|
|
Background="{StaticResource WindowBackgroundBrush}"
|
|
Foreground="Red"
|
|
Text=""
|
|
TextAlignment="Left" Margin="0,79,0,-45" Grid.ColumnSpan="3" />
|
|
<local:FilePicker Grid.Row="1" Grid.Column="2"
|
|
x:Name="ModListLocationPicker"
|
|
Height="30"
|
|
VerticalAlignment="Center"
|
|
FontSize="14" />
|
|
<ContentPresenter Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="3"
|
|
x:Name="InstallerCustomizationContent"
|
|
VerticalAlignment="Top">
|
|
<ContentPresenter.Resources>
|
|
<DataTemplate DataType="{x:Type local:MO2InstallerVM}">
|
|
<local:MO2InstallerConfigView />
|
|
</DataTemplate>
|
|
</ContentPresenter.Resources>
|
|
<ContentPresenter.Style>
|
|
<Style TargetType="ContentPresenter">
|
|
<Style.Triggers>
|
|
<DataTrigger Binding="{Binding RelativeSource={x:Static RelativeSource.Self}, Path=Content}" Value="{x:Null}">
|
|
<Setter Property="ContentPresenter.ContentTemplate">
|
|
<Setter.Value>
|
|
<DataTemplate>
|
|
<Rectangle Height="74" />
|
|
</DataTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</DataTrigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</ContentPresenter.Style>
|
|
</ContentPresenter>
|
|
</Grid>
|
|
<Grid Grid.Column="2" Margin="0,0,25,0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<local:BeginButton Grid.Row="1"
|
|
x:Name="BeginButton"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" />
|
|
<icon:PackIconFontAwesome Grid.Row="2"
|
|
x:Name="ErrorSummaryIconGlow"
|
|
HorizontalAlignment="Center"
|
|
Foreground="{StaticResource WarningBrush}"
|
|
Kind="ExclamationTriangleSolid"
|
|
Opacity="0.6">
|
|
<icon:PackIconFontAwesome.Effect>
|
|
<BlurEffect Radius="15" />
|
|
</icon:PackIconFontAwesome.Effect>
|
|
</icon:PackIconFontAwesome>
|
|
<icon:PackIconFontAwesome Grid.Row="2"
|
|
x:Name="ErrorSummaryIcon"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Top"
|
|
Foreground="{StaticResource WarningBrush}"
|
|
Kind="ExclamationTriangleSolid" />
|
|
<CheckBox Grid.Row="2" Grid.Column="2"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Bottom"
|
|
x:Name="OverwriteCheckBox"
|
|
Content="Overwrite Installation"
|
|
IsChecked="False"
|
|
ToolTip="Confirm to overwrite files in install folder.">
|
|
<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>
|
|
</Grid>
|
|
</rxui:ReactiveUserControl>
|