2019-10-28 04:35:31 +00:00
|
|
|
<UserControl
|
|
|
|
x:Class="Wabbajack.InstallationView"
|
|
|
|
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:local="clr-namespace:Wabbajack"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:mahapps="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
|
2019-10-30 19:45:42 +00:00
|
|
|
xmlns:icon="http://metro.mahapps.com/winfx/xaml/iconpacks"
|
2019-10-28 04:35:31 +00:00
|
|
|
d:DesignHeight="500"
|
|
|
|
d:DesignWidth="800"
|
|
|
|
mc:Ignorable="d">
|
|
|
|
<UserControl.Resources>
|
|
|
|
<Color x:Key="TextBackgroundFill">#92000000</Color>
|
|
|
|
<SolidColorBrush x:Key="TextBackgroundFillBrush" Color="{StaticResource TextBackgroundFill}" />
|
|
|
|
<Color x:Key="TextBackgroundHoverFill" >#DF000000</Color>
|
|
|
|
<Style x:Key="BackgroundBlurStyle" TargetType="Border">
|
|
|
|
<Setter Property="Background" Value="{StaticResource TextBackgroundFillBrush}" />
|
2019-11-01 02:17:44 +00:00
|
|
|
<Setter Property="Visibility" Value="Hidden" />
|
2019-10-28 04:35:31 +00:00
|
|
|
<Style.Triggers>
|
|
|
|
<DataTrigger Binding="{Binding IsMouseOver, ElementName=Slideshow}" Value="True" >
|
|
|
|
<DataTrigger.EnterActions>
|
|
|
|
<BeginStoryboard>
|
|
|
|
<Storyboard>
|
|
|
|
<ColorAnimation To="{StaticResource TextBackgroundHoverFill}"
|
|
|
|
Duration="0:0:0.06"
|
|
|
|
Storyboard.TargetProperty="(Border.Background).(SolidColorBrush.Color)" />
|
|
|
|
</Storyboard>
|
|
|
|
</BeginStoryboard>
|
|
|
|
</DataTrigger.EnterActions>
|
|
|
|
<DataTrigger.ExitActions>
|
|
|
|
<BeginStoryboard>
|
|
|
|
<Storyboard>
|
|
|
|
<ColorAnimation To="{StaticResource TextBackgroundFill}"
|
|
|
|
Duration="0:0:0.06"
|
|
|
|
Storyboard.TargetProperty="(Border.Background).(SolidColorBrush.Color)" />
|
|
|
|
</Storyboard>
|
|
|
|
</BeginStoryboard>
|
|
|
|
</DataTrigger.ExitActions>
|
|
|
|
</DataTrigger>
|
2019-11-01 02:17:44 +00:00
|
|
|
<DataTrigger Binding="{Binding ShowTextShadow}" Value="True" >
|
|
|
|
<Setter Property="Visibility" Value="Visible" />
|
2019-10-28 04:35:31 +00:00
|
|
|
</DataTrigger>
|
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
<Style x:Key="SlideshowButton" BasedOn="{StaticResource CircleButtonStyle}" TargetType="ToggleButton" >
|
|
|
|
<Setter Property="Width" Value="40" />
|
|
|
|
<Setter Property="Height" Value="40" />
|
|
|
|
<Setter Property="Margin" Value="4" />
|
|
|
|
</Style>
|
|
|
|
</UserControl.Resources>
|
|
|
|
<Grid Margin="5">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="40" />
|
|
|
|
<RowDefinition Height="5" />
|
|
|
|
<RowDefinition Height="4*" />
|
|
|
|
<RowDefinition Height="*" MinHeight="150" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Slideshow -->
|
2019-11-01 01:02:39 +00:00
|
|
|
<Grid Grid.Row="2" Margin="0,0,0,5" x:Name="Slideshow" >
|
2019-10-25 04:26:29 +00:00
|
|
|
<Grid.ColumnDefinitions>
|
2019-10-28 04:35:31 +00:00
|
|
|
<ColumnDefinition Width="5*" />
|
|
|
|
<ColumnDefinition Width="3*" />
|
2019-10-25 04:26:29 +00:00
|
|
|
</Grid.ColumnDefinitions>
|
2019-10-28 04:35:31 +00:00
|
|
|
<Rectangle
|
2019-10-25 04:26:29 +00:00
|
|
|
Grid.Column="0"
|
|
|
|
Grid.ColumnSpan="2"
|
2019-10-28 04:35:31 +00:00
|
|
|
Fill="{StaticResource WindowBackgroundBrush}" />
|
|
|
|
<Viewbox
|
2019-10-25 04:26:29 +00:00
|
|
|
Grid.Column="0"
|
2019-10-28 04:35:31 +00:00
|
|
|
Grid.ColumnSpan="2" Stretch="UniformToFill" HorizontalAlignment="Center" VerticalAlignment="Center" >
|
2019-11-01 01:02:39 +00:00
|
|
|
<Image Source="{Binding Image}" />
|
2019-10-28 04:35:31 +00:00
|
|
|
</Viewbox>
|
|
|
|
<Image
|
2019-10-25 04:26:29 +00:00
|
|
|
Grid.Column="0"
|
2019-10-28 04:35:31 +00:00
|
|
|
Grid.ColumnSpan="2"
|
|
|
|
Width="60"
|
|
|
|
Height="60"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Top"
|
2019-11-01 01:02:39 +00:00
|
|
|
Source="{Binding ModlistImage}" />
|
2019-10-28 04:35:31 +00:00
|
|
|
<Grid Grid.Column="0" >
|
2019-10-25 04:26:29 +00:00
|
|
|
<Grid.RowDefinitions>
|
2019-10-28 04:35:31 +00:00
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="Auto" />
|
2019-10-25 04:26:29 +00:00
|
|
|
</Grid.RowDefinitions>
|
2019-10-28 04:35:31 +00:00
|
|
|
<Border Grid.Row="1" Grid.RowSpan="2" Grid.Column="0" Margin="-100,0,0,-100" CornerRadius="100" Style="{StaticResource BackgroundBlurStyle}" >
|
|
|
|
<Border.Effect>
|
|
|
|
<BlurEffect Radius="65" />
|
|
|
|
</Border.Effect>
|
|
|
|
</Border>
|
|
|
|
<TextBlock
|
|
|
|
Grid.Row="1"
|
2019-10-25 04:26:29 +00:00
|
|
|
Grid.Column="0"
|
2019-10-28 04:35:31 +00:00
|
|
|
VerticalAlignment="Bottom"
|
2019-11-01 01:02:39 +00:00
|
|
|
Text="{Binding TitleText}"
|
2019-10-28 04:35:31 +00:00
|
|
|
FontSize="65"
|
|
|
|
Margin="20,25,20,0"
|
|
|
|
FontFamily="Lucida Sans"
|
|
|
|
FontWeight="Bold"
|
|
|
|
TextWrapping="WrapWithOverflow" >
|
|
|
|
<TextBlock.Effect>
|
|
|
|
<DropShadowEffect />
|
|
|
|
</TextBlock.Effect>
|
|
|
|
</TextBlock>
|
|
|
|
<TextBlock
|
2019-10-25 04:26:29 +00:00
|
|
|
Grid.Row="2"
|
|
|
|
Grid.Column="0"
|
2019-10-28 04:35:31 +00:00
|
|
|
FontSize="30"
|
|
|
|
Margin="55,0,20,20"
|
|
|
|
FontFamily="Lucida Sans"
|
|
|
|
FontWeight="Bold"
|
2019-11-01 01:02:39 +00:00
|
|
|
Text="{Binding AuthorText}"
|
2019-10-28 04:35:31 +00:00
|
|
|
TextWrapping="Wrap" >
|
|
|
|
<TextBlock.Effect>
|
|
|
|
<DropShadowEffect />
|
|
|
|
</TextBlock.Effect>
|
|
|
|
</TextBlock>
|
2019-10-25 04:26:29 +00:00
|
|
|
</Grid>
|
2019-10-28 04:35:31 +00:00
|
|
|
<Grid Grid.Column="1" >
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid Grid.Row="0"
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
Margin="0,20,25,0" >
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.Effect>
|
|
|
|
<DropShadowEffect Color="Black" Opacity="1" BlurRadius="25" />
|
|
|
|
</Grid.Effect>
|
|
|
|
<Grid.Style>
|
|
|
|
<Style TargetType="Grid">
|
|
|
|
<Setter Property="Opacity" Value="0" />
|
|
|
|
<Style.Triggers>
|
2019-10-30 19:45:42 +00:00
|
|
|
<MultiDataTrigger>
|
|
|
|
<MultiDataTrigger.Conditions>
|
|
|
|
<Condition Binding="{Binding IsMouseOver, ElementName=Slideshow}" Value="True" />
|
2019-11-01 01:02:39 +00:00
|
|
|
<Condition Binding="{Binding Installing}" Value="True" />
|
2019-10-30 19:45:42 +00:00
|
|
|
</MultiDataTrigger.Conditions>
|
|
|
|
<MultiDataTrigger.EnterActions>
|
2019-10-28 04:35:31 +00:00
|
|
|
<BeginStoryboard>
|
|
|
|
<Storyboard>
|
|
|
|
<DoubleAnimation
|
|
|
|
To="1"
|
|
|
|
Storyboard.TargetProperty="Opacity"
|
|
|
|
Duration="0:0:0.12" />
|
|
|
|
</Storyboard>
|
|
|
|
</BeginStoryboard>
|
2019-10-30 19:45:42 +00:00
|
|
|
</MultiDataTrigger.EnterActions>
|
|
|
|
<MultiDataTrigger.ExitActions>
|
2019-10-28 04:35:31 +00:00
|
|
|
<BeginStoryboard>
|
|
|
|
<Storyboard>
|
|
|
|
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="Opacity" >
|
|
|
|
<LinearDoubleKeyFrame KeyTime="0:0:0.3" Value="1" />
|
|
|
|
<LinearDoubleKeyFrame KeyTime="0:0:0.42" Value="0" />
|
|
|
|
</DoubleAnimationUsingKeyFrames>
|
|
|
|
</Storyboard>
|
|
|
|
</BeginStoryboard>
|
2019-10-30 19:45:42 +00:00
|
|
|
</MultiDataTrigger.ExitActions>
|
|
|
|
</MultiDataTrigger>
|
2019-10-28 04:35:31 +00:00
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
</Grid.Style>
|
|
|
|
<Button Grid.Row="0"
|
|
|
|
Style="{StaticResource CircleButtonStyle}"
|
|
|
|
Background="{StaticResource BackgroundBrush}"
|
|
|
|
Height="60"
|
|
|
|
Width="60"
|
2019-11-01 01:02:39 +00:00
|
|
|
Command="{Binding Slideshow.SlideShowNextItemCommand}"
|
2019-10-28 04:35:31 +00:00
|
|
|
ToolTip="Skip to the next mod"
|
|
|
|
Margin="6,6,6,12">
|
|
|
|
<icon:PackIconFontAwesome Kind="ChevronRightSolid" Height="28" Width="28" />
|
|
|
|
</Button>
|
|
|
|
<ToggleButton Grid.Row="1"
|
2019-11-01 01:02:39 +00:00
|
|
|
IsChecked="{Binding Slideshow.Enable}"
|
2019-10-28 04:35:31 +00:00
|
|
|
Style="{StaticResource SlideshowButton}"
|
|
|
|
Background="{StaticResource BackgroundBrush}"
|
|
|
|
x:Name="PlayPauseButton"
|
|
|
|
ToolTip="Pause/Play slideshow"
|
|
|
|
Margin="6,6,6,3">
|
|
|
|
<icon:PackIconMaterial >
|
|
|
|
<icon:PackIconMaterial.Style>
|
|
|
|
<Style TargetType="icon:PackIconMaterial">
|
|
|
|
<Setter Property="Kind" Value="Pause" />
|
|
|
|
<Style.Triggers>
|
2019-11-01 01:02:39 +00:00
|
|
|
<DataTrigger Binding="{Binding Slideshow.Enable}" Value="True" >
|
2019-10-28 04:35:31 +00:00
|
|
|
<Setter Property="Kind" Value="Play" />
|
|
|
|
</DataTrigger>
|
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
</icon:PackIconMaterial.Style>
|
|
|
|
</icon:PackIconMaterial>
|
|
|
|
</ToggleButton>
|
|
|
|
<ToggleButton Grid.Row="2"
|
2019-11-01 01:02:39 +00:00
|
|
|
IsChecked="{Binding Slideshow.ShowNSFW}"
|
2019-10-28 04:35:31 +00:00
|
|
|
Style="{StaticResource SlideshowButton}"
|
|
|
|
ToolTip="Show NSFW mods"
|
|
|
|
Background="{StaticResource BackgroundBrush}">
|
|
|
|
<Grid>
|
|
|
|
<TextBlock Text="NSFW" Margin="4"
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
FontWeight="Bold"
|
|
|
|
FontSize="9"
|
|
|
|
FontFamily="Lucida Sans"
|
|
|
|
VerticalAlignment="Center" />
|
|
|
|
<icon:PackIconOcticons
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Foreground="#88FFFFFF"
|
|
|
|
Height="40"
|
|
|
|
Width="40"
|
|
|
|
Kind="CircleSlash"
|
2019-11-01 01:02:39 +00:00
|
|
|
Visibility="{Binding Slideshow.ShowNSFW, Converter={StaticResource bool2VisibilityConverter}, ConverterParameter=False}" />
|
2019-10-28 04:35:31 +00:00
|
|
|
</Grid>
|
|
|
|
</ToggleButton>
|
|
|
|
</Grid>
|
|
|
|
<Border Grid.Row="3" Margin="0,0,-50,-50" CornerRadius="50" Style="{StaticResource BackgroundBlurStyle}">
|
|
|
|
<Border.Effect>
|
|
|
|
<BlurEffect Radius="65" />
|
|
|
|
</Border.Effect>
|
|
|
|
</Border>
|
|
|
|
<TextBlock
|
|
|
|
Grid.Row="3"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
FontSize="16"
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
TextAlignment="Right"
|
|
|
|
Margin="20,25,25,25"
|
|
|
|
FontFamily="Lucida Sans"
|
|
|
|
Text="{Binding Summary}"
|
|
|
|
TextWrapping="Wrap" >
|
|
|
|
<TextBlock.Effect>
|
|
|
|
<DropShadowEffect />
|
|
|
|
</TextBlock.Effect>
|
|
|
|
</TextBlock>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
<!-- Top progress bar -->
|
|
|
|
<!-- Comes after slideshow control, so that any effects/overlap goes on top -->
|
|
|
|
<Rectangle VerticalAlignment="Top" Height="25" Grid.Row="2" IsHitTestVisible="False" >
|
|
|
|
<Rectangle.Fill>
|
|
|
|
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
|
|
|
<GradientStop Color="#AA000000" Offset="0"/>
|
|
|
|
<GradientStop Color="#00000000" Offset="1"/>
|
|
|
|
</LinearGradientBrush>
|
|
|
|
</Rectangle.Fill>
|
|
|
|
</Rectangle>
|
2019-10-30 19:45:42 +00:00
|
|
|
<Rectangle Grid.Row="1" Fill="{StaticResource BackgroundBrush}" />
|
2019-10-28 04:35:31 +00:00
|
|
|
<mahapps:MetroProgressBar x:Name="BottomProgressBarDarkGlow"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
VerticalAlignment="Top"
|
2019-11-01 00:21:24 +00:00
|
|
|
Maximum="1"
|
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay}"
|
2019-10-28 04:35:31 +00:00
|
|
|
Foreground="{StaticResource PrimaryVariantBrush}"
|
|
|
|
Background="Transparent"
|
|
|
|
BorderBrush="Transparent"
|
2019-11-01 00:21:24 +00:00
|
|
|
Height="16"
|
|
|
|
Margin="-4" >
|
2019-10-28 04:35:31 +00:00
|
|
|
<mahapps:MetroProgressBar.Effect>
|
|
|
|
<BlurEffect Radius="25" />
|
|
|
|
</mahapps:MetroProgressBar.Effect>
|
|
|
|
</mahapps:MetroProgressBar>
|
|
|
|
<mahapps:MetroProgressBar x:Name="BottomProgressBarBrightGlow"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
VerticalAlignment="Top"
|
2019-11-01 00:21:24 +00:00
|
|
|
Maximum="1"
|
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay}"
|
2019-10-28 04:35:31 +00:00
|
|
|
Foreground="{StaticResource PrimaryBrush}"
|
|
|
|
Background="Transparent"
|
|
|
|
BorderBrush="Transparent"
|
2019-11-01 00:21:24 +00:00
|
|
|
Height="6"
|
|
|
|
Margin="-4" >
|
2019-10-28 04:35:31 +00:00
|
|
|
<mahapps:MetroProgressBar.Effect>
|
|
|
|
<BlurEffect Radius="20" />
|
|
|
|
</mahapps:MetroProgressBar.Effect>
|
|
|
|
</mahapps:MetroProgressBar>
|
|
|
|
<Grid Grid.Row="0" x:Name="TopBarGrid">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<mahapps:MetroProgressBar Grid.Column="0"
|
|
|
|
Grid.ColumnSpan="4"
|
|
|
|
Background="{StaticResource WindowBackgroundBrush}"
|
|
|
|
BorderThickness="0"
|
|
|
|
Foreground="Transparent"
|
2019-11-01 00:21:24 +00:00
|
|
|
Maximum="1"
|
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay}" />
|
2019-10-28 04:35:31 +00:00
|
|
|
<mahapps:MetroProgressBar Grid.Column="0" Grid.ColumnSpan="4"
|
|
|
|
Background="Transparent"
|
|
|
|
BorderThickness="0"
|
2019-11-01 00:21:24 +00:00
|
|
|
Foreground="{StaticResource PrimaryVariantBrush}"
|
|
|
|
Opacity="{Binding ProgressPercent, Mode=OneWay}"
|
|
|
|
Maximum="1"
|
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay}" />
|
2019-10-28 04:35:31 +00:00
|
|
|
<TextBlock Grid.Column="0"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
Margin="10,0,0,8"
|
2019-10-30 19:45:42 +00:00
|
|
|
Width="90"
|
2019-10-28 04:35:31 +00:00
|
|
|
FontWeight="Black"
|
2019-10-30 19:45:42 +00:00
|
|
|
TextAlignment="Right"
|
|
|
|
FontFamily="Lucida Sans" >
|
|
|
|
<TextBlock.Style>
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
<Setter Property="Text" Value="Configuring" />
|
|
|
|
<Setter Property="FontSize" Value="15" />
|
|
|
|
<Style.Triggers>
|
2019-11-01 00:21:24 +00:00
|
|
|
<MultiDataTrigger>
|
|
|
|
<MultiDataTrigger.Conditions>
|
|
|
|
<Condition Binding="{Binding InstallingMode}" Value="True" />
|
|
|
|
<Condition Binding="{Binding Installing}" Value="True" />
|
|
|
|
</MultiDataTrigger.Conditions>
|
|
|
|
<MultiDataTrigger.Setters>
|
|
|
|
<Setter Property="Text" Value="Installing" />
|
|
|
|
<Setter Property="FontSize" Value="14" />
|
|
|
|
</MultiDataTrigger.Setters>
|
|
|
|
</MultiDataTrigger>
|
|
|
|
<MultiDataTrigger>
|
|
|
|
<MultiDataTrigger.Conditions>
|
|
|
|
<Condition Binding="{Binding InstallingMode}" Value="True" />
|
|
|
|
<Condition Binding="{Binding Installing}" Value="False" />
|
|
|
|
</MultiDataTrigger.Conditions>
|
|
|
|
<MultiDataTrigger.Setters>
|
|
|
|
<Setter Property="Text" Value="Installed" />
|
|
|
|
<Setter Property="FontSize" Value="14" />
|
|
|
|
</MultiDataTrigger.Setters>
|
|
|
|
</MultiDataTrigger>
|
2019-10-30 19:45:42 +00:00
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
</TextBlock.Style>
|
|
|
|
</TextBlock>
|
2019-10-28 04:35:31 +00:00
|
|
|
<TextBlock Grid.Column="1" Text="{Binding ModListName}"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Margin="15,0,0,0"
|
|
|
|
FontSize="25"
|
|
|
|
FontWeight="Black"
|
2019-10-30 19:45:42 +00:00
|
|
|
FontFamily="Lucida Sans" />
|
2019-11-01 00:21:24 +00:00
|
|
|
<!-- Readd when Pause/Stop implementations added -->
|
|
|
|
<!--<Button Grid.Column="2"
|
2019-10-30 19:45:42 +00:00
|
|
|
ToolTip="Pause Installation"
|
|
|
|
Margin="0,0,0,5"
|
|
|
|
Width="50"
|
2019-11-01 00:21:24 +00:00
|
|
|
Visibility="{Binding InstallingMode, Converter={StaticResource bool2VisibilityConverter}}">
|
2019-10-28 04:35:31 +00:00
|
|
|
<icon:PackIconMaterial
|
|
|
|
Kind="Pause" />
|
|
|
|
</Button>
|
2019-10-30 19:45:42 +00:00
|
|
|
<Button Grid.Column="3"
|
|
|
|
ToolTip="Stop Installation"
|
|
|
|
Margin="0,0,0,5"
|
|
|
|
Width="50"
|
2019-11-01 00:21:24 +00:00
|
|
|
Visibility="{Binding InstallingMode, Converter={StaticResource bool2VisibilityConverter}}" >
|
2019-10-28 04:35:31 +00:00
|
|
|
<icon:PackIconFontAwesome
|
|
|
|
Width="25"
|
|
|
|
Height="25"
|
|
|
|
Kind="TimesCircleSolid" />
|
2019-11-01 00:21:24 +00:00
|
|
|
</Button>-->
|
2019-10-28 04:35:31 +00:00
|
|
|
</Grid>
|
|
|
|
<mahapps:MetroProgressBar x:Name="BottomProgressBar"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
VerticalAlignment="Top"
|
2019-11-01 00:21:24 +00:00
|
|
|
Maximum="1"
|
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay}"
|
2019-10-28 04:35:31 +00:00
|
|
|
Foreground="{StaticResource PrimaryBrush}"
|
|
|
|
Background="Transparent"
|
|
|
|
BorderBrush="Transparent"
|
|
|
|
Height="5" />
|
|
|
|
<mahapps:MetroProgressBar x:Name="BottomProgressBarHighlight"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
VerticalAlignment="Top"
|
2019-11-01 00:21:24 +00:00
|
|
|
Maximum="1"
|
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay}"
|
2019-10-28 04:35:31 +00:00
|
|
|
Background="Transparent"
|
|
|
|
BorderBrush="Transparent"
|
|
|
|
Height="5" >
|
|
|
|
<mahapps:MetroProgressBar.Foreground>
|
|
|
|
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
|
|
|
<GradientStop Color="#CCFFFFFF" Offset="0"/>
|
|
|
|
<GradientStop Color="#00FFFFFF" Offset="0.3"/>
|
|
|
|
<GradientStop Color="#00FFFFFF" Offset="0.7"/>
|
|
|
|
<GradientStop Color="#CCFFFFFF" Offset="1"/>
|
|
|
|
</LinearGradientBrush>
|
|
|
|
</mahapps:MetroProgressBar.Foreground>
|
|
|
|
</mahapps:MetroProgressBar>
|
2019-10-30 19:45:42 +00:00
|
|
|
<!-- Bottom Area -->
|
|
|
|
<Grid Grid.Row="3"
|
2019-11-01 00:21:24 +00:00
|
|
|
Visibility="{Binding InstallingMode, Converter={StaticResource bool2VisibilityConverter}, ConverterParameter=False}" >
|
2019-10-28 04:35:31 +00:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
2019-10-30 19:45:42 +00:00
|
|
|
<ColumnDefinition Width="4" />
|
|
|
|
<ColumnDefinition Width="2*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid Grid.Column="0"
|
|
|
|
Margin="10">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="*" />
|
2019-11-01 02:57:49 +00:00
|
|
|
<RowDefinition Height="*" />
|
2019-10-30 19:45:42 +00:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Button Grid.Row="0"
|
2019-11-01 02:57:49 +00:00
|
|
|
Margin="30, 5"
|
2019-10-30 19:45:42 +00:00
|
|
|
Content="Readme"
|
2019-11-01 02:57:49 +00:00
|
|
|
ToolTip="Open the readme for the modlist"
|
2019-10-30 19:45:42 +00:00
|
|
|
FontSize="20"
|
|
|
|
Command="{Binding OpenReadmeCommand}" />
|
|
|
|
<Button Grid.Row="1"
|
2019-11-01 02:57:49 +00:00
|
|
|
Margin="30, 5"
|
|
|
|
Content="Website"
|
|
|
|
ToolTip="Open the webpage for the modlist"
|
|
|
|
FontSize="20"
|
|
|
|
Command="{Binding VisitWebsiteCommand}" />
|
|
|
|
<Button Grid.Row="2"
|
|
|
|
Margin="30, 5"
|
2019-10-30 19:45:42 +00:00
|
|
|
Content="Manifest"
|
|
|
|
ToolTip="Open an explicit listing of all actions this modlist will take"
|
|
|
|
FontSize="20"
|
|
|
|
Command="{Binding ShowReportCommand}" />
|
|
|
|
</Grid>
|
|
|
|
<Grid Grid.Column="2"
|
|
|
|
x:Name="InstallationConfigurationView"
|
|
|
|
Background="{StaticResource WindowBackgroundBrush}" >
|
|
|
|
<ScrollViewer VerticalScrollBarVisibility="Auto" Background="Transparent"
|
|
|
|
Margin="5"
|
2019-11-01 00:21:24 +00:00
|
|
|
Visibility="{Binding InstallingMode, Converter={StaticResource bool2VisibilityConverter}, ConverterParameter=False}">
|
2019-10-30 19:45:42 +00:00
|
|
|
<Grid Margin="8">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="20" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="20" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="40" />
|
|
|
|
<RowDefinition Height="40" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Grid.Column="0" Grid.Row="1"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
FontSize="14"
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
TextAlignment="Center"
|
|
|
|
Text="Installation Location" />
|
|
|
|
<local:FilePicker Grid.Column="2" Grid.Row="1"
|
|
|
|
Height="30"
|
|
|
|
FontSize="14"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
PathType="Folder"
|
|
|
|
DoExistsCheck="False"
|
|
|
|
PromptTitle="Select Installation directory"
|
|
|
|
TargetPath="{Binding Location}" />
|
|
|
|
<TextBlock Grid.Column="0" Grid.Row="2"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
FontSize="14"
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
TextAlignment="Center"
|
|
|
|
Text="Download Location" />
|
|
|
|
<local:FilePicker Grid.Column="2" Grid.Row="2"
|
|
|
|
Height="30"
|
|
|
|
FontSize="14"
|
|
|
|
PathType="Folder"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
DoExistsCheck="False"
|
|
|
|
PromptTitle="Select a location for MO2 downloads"
|
|
|
|
TargetPath="{Binding DownloadLocation}" />
|
|
|
|
<Button Grid.Row="1" Grid.RowSpan="2"
|
|
|
|
Grid.Column="4"
|
|
|
|
Width="55"
|
|
|
|
Height="55"
|
|
|
|
Margin="0,0,25,0"
|
|
|
|
BorderBrush="{StaticResource SecondaryBrush}"
|
|
|
|
Background="#222222"
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
Command="{Binding BeginCommand}"
|
|
|
|
Style="{StaticResource CircleButtonStyle}">
|
|
|
|
<icon:PackIconMaterial
|
|
|
|
Foreground="{StaticResource SecondaryBrush}"
|
|
|
|
Margin="5,0,0,0"
|
|
|
|
Height="25"
|
|
|
|
Width="25"
|
|
|
|
Kind="Play" />
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</ScrollViewer>
|
|
|
|
</Grid>
|
|
|
|
<Rectangle Grid.Column="0" Grid.ColumnSpan="3"
|
|
|
|
Height="1"
|
|
|
|
Margin="25,0"
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
Fill="{StaticResource DarkBackgroundBrush}"/>
|
|
|
|
</Grid>
|
|
|
|
<Grid Grid.Row="3"
|
2019-11-01 00:21:24 +00:00
|
|
|
Visibility="{Binding InstallingMode, Converter={StaticResource bool2VisibilityConverter}}" >
|
2019-10-30 19:45:42 +00:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="4" />
|
2019-10-28 04:35:31 +00:00
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ListBox
|
|
|
|
Grid.Column="0"
|
|
|
|
local:AutoScrollBehavior.ScrollOnNewItem="True"
|
|
|
|
ItemsSource="{Binding MWVM.Log}" />
|
2019-10-30 19:45:42 +00:00
|
|
|
<ListBox x:Name="CpuListBox"
|
|
|
|
Grid.Column="2"
|
|
|
|
ItemsSource="{Binding MWVM.StatusList}">
|
2019-10-25 04:26:29 +00:00
|
|
|
<ListBox.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Grid HorizontalAlignment="Stretch">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ProgressBar
|
|
|
|
Grid.Column="0"
|
|
|
|
Width="100"
|
|
|
|
Maximum="100"
|
|
|
|
Minimum="0"
|
|
|
|
Value="{Binding Progress, Mode=OneTime}">
|
|
|
|
<ProgressBar.Style>
|
|
|
|
<Style TargetType="ProgressBar">
|
|
|
|
<Setter Property="Visibility" Value="Visible" />
|
|
|
|
<Style.Triggers>
|
2019-11-01 00:21:24 +00:00
|
|
|
<DataTrigger Binding="{Binding Progress, Mode=OneTime}" Value="0">
|
2019-10-25 04:26:29 +00:00
|
|
|
<Setter Property="Visibility" Value="Collapsed" />
|
|
|
|
</DataTrigger>
|
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
</ProgressBar.Style>
|
|
|
|
</ProgressBar>
|
|
|
|
<TextBlock Grid.Column="1" Text=" CPU " />
|
2019-11-01 00:21:24 +00:00
|
|
|
<TextBlock Grid.Column="2" Text="{Binding ID, Mode=OneTime}" />
|
2019-10-25 04:26:29 +00:00
|
|
|
<TextBlock Grid.Column="3" Text=" - " />
|
2019-11-01 00:21:24 +00:00
|
|
|
<TextBlock Grid.Column="4" Text="{Binding Msg, Mode=OneTime}" />
|
2019-10-25 04:26:29 +00:00
|
|
|
</Grid>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListBox.ItemTemplate>
|
|
|
|
</ListBox>
|
|
|
|
</Grid>
|
2019-10-28 04:35:31 +00:00
|
|
|
</Grid>
|
2019-10-25 04:26:29 +00:00
|
|
|
</UserControl>
|