wabbajack/Wabbajack/Views/Common/TopProgressView.xaml

148 lines
6.3 KiB
Plaintext
Raw Normal View History

2020-02-08 04:35:08 +00:00
<local:UserControlRx
2019-11-07 05:33:08 +00:00
x:Class="Wabbajack.TopProgressView"
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:lib="clr-namespace:Wabbajack.Lib;assembly=Wabbajack.Lib"
2019-11-07 05:33:08 +00:00
xmlns:local="clr-namespace:Wabbajack"
xmlns:mahapps="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
d:DesignHeight="450"
d:DesignWidth="800"
x:TypeArguments="lib:ViewModel"
BorderThickness="0"
2019-11-07 05:33:08 +00:00
mc:Ignorable="d">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition Height="5" />
<RowDefinition Height="25" />
</Grid.RowDefinitions>
<Rectangle Grid.Row="2"
2020-02-08 04:35:08 +00:00
x:Name="OverhangShadowRect"
2019-11-07 05:33:08 +00:00
Height="25"
VerticalAlignment="Top"
2020-02-08 04:35:08 +00:00
IsHitTestVisible="False">
2019-11-07 05:33:08 +00:00
<Rectangle.Fill>
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0" Color="#AA000000" />
<GradientStop Offset="1" Color="#00000000" />
</LinearGradientBrush>
</Rectangle.Fill>
</Rectangle>
<Rectangle Grid.Row="1" Fill="{StaticResource BackgroundBrush}" />
<mahapps:MetroProgressBar Grid.Row="1" Grid.RowSpan="2"
2019-11-07 05:33:08 +00:00
x:Name="BottomProgressBarDarkGlow"
Height="16"
Margin="-4"
VerticalAlignment="Top"
Background="Transparent"
BorderBrush="Transparent"
Foreground="{StaticResource PrimaryVariantBrush}"
2020-02-08 04:35:08 +00:00
Maximum="1">
2019-11-07 05:33:08 +00:00
<mahapps:MetroProgressBar.Effect>
<BlurEffect Radius="25" />
</mahapps:MetroProgressBar.Effect>
</mahapps:MetroProgressBar>
<Grid x:Name="TopBarGrid" Grid.Row="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<mahapps:MetroProgressBar Grid.Column="0" Grid.ColumnSpan="4"
x:Name="LargeProgressBar"
Background="#AA121212"
2019-11-07 05:33:08 +00:00
BorderThickness="0"
2020-02-08 04:35:08 +00:00
Maximum="1">
<mahapps:MetroProgressBar.Foreground>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,0">
2019-12-22 07:55:52 +00:00
<GradientStop Offset="0" Color="{StaticResource DarkerPrimaryVariant}" />
<GradientStop Offset="0.5" Color="{StaticResource PrimaryVariant}" />
</LinearGradientBrush>
</mahapps:MetroProgressBar.Foreground>
</mahapps:MetroProgressBar>
<mahapps:MetroProgressBar Grid.Column="0" Grid.ColumnSpan="4"
x:Name="LargeProgressBarTopGlow"
2019-11-07 05:33:08 +00:00
Background="Transparent"
BorderThickness="0"
2020-02-08 04:35:08 +00:00
Maximum="1">
<mahapps:MetroProgressBar.Foreground>
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0" Color="#33000000" />
<GradientStop Offset="0.3" Color="#00000000" />
</LinearGradientBrush>
</mahapps:MetroProgressBar.Foreground>
</mahapps:MetroProgressBar>
<TextBlock Grid.Column="0"
2020-02-08 04:35:08 +00:00
x:Name="StatePrefixText"
2019-11-24 23:42:28 +00:00
Width="130"
Margin="0,0,0,0"
VerticalAlignment="Center"
2019-11-07 05:33:08 +00:00
FontFamily="Lucida Sans"
FontWeight="Black"
2019-11-30 09:08:04 +00:00
Foreground="{StaticResource ComplementaryBrush}"
2020-02-08 04:35:08 +00:00
TextAlignment="Right" />
<Rectangle Grid.Column="0"
2020-02-08 04:35:08 +00:00
x:Name="PrefixSpacerRect"
Width="50" />
<TextBlock Grid.Column="1"
2020-02-08 04:35:08 +00:00
x:Name="TitleText"
2019-11-07 05:33:08 +00:00
Margin="15,0,0,0"
VerticalAlignment="Center"
FontFamily="Lucida Sans"
FontSize="25"
2020-02-08 04:35:08 +00:00
FontWeight="Black" />
2019-11-09 04:21:33 +00:00
<ContentControl Grid.Column="2" />
2019-11-07 05:33:08 +00:00
</Grid>
<mahapps:MetroProgressBar Grid.Row="1" Grid.RowSpan="2"
x:Name="BottomProgressBarBrightGlow1"
Height="5"
VerticalAlignment="Top"
Background="Transparent"
BorderBrush="Transparent"
Foreground="{StaticResource SecondaryBrush}"
2020-02-08 04:35:08 +00:00
Maximum="1">
<mahapps:MetroProgressBar.Effect>
<BlurEffect Radius="8" />
</mahapps:MetroProgressBar.Effect>
</mahapps:MetroProgressBar>
<mahapps:MetroProgressBar Grid.Row="1" Grid.RowSpan="2"
x:Name="BottomProgressBarBrightGlow2"
Height="5"
VerticalAlignment="Top"
Background="Transparent"
BorderBrush="Transparent"
Foreground="{StaticResource SecondaryBrush}"
2020-02-08 04:35:08 +00:00
Maximum="1">
<mahapps:MetroProgressBar.Effect>
<BlurEffect Radius="15" />
</mahapps:MetroProgressBar.Effect>
</mahapps:MetroProgressBar>
<mahapps:MetroProgressBar Grid.Row="1" Grid.RowSpan="2"
2019-11-07 05:33:08 +00:00
x:Name="BottomProgressBar"
Height="5"
VerticalAlignment="Top"
Background="Transparent"
BorderBrush="Transparent"
Foreground="{StaticResource SecondaryBrush}"
2020-02-08 04:35:08 +00:00
Maximum="1" />
<mahapps:MetroProgressBar Grid.Row="1" Grid.RowSpan="2"
2019-11-07 05:33:08 +00:00
x:Name="BottomProgressBarHighlight"
Height="5"
VerticalAlignment="Top"
Background="Transparent"
BorderBrush="Transparent"
2020-02-08 04:35:08 +00:00
Maximum="1">
2019-11-07 05:33:08 +00:00
<mahapps:MetroProgressBar.Foreground>
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0" Color="#CCFFFFFF" />
<GradientStop Offset="0.3" Color="#00FFFFFF" />
<GradientStop Offset="0.7" Color="#00FFFFFF" />
<GradientStop Offset="1" Color="#CCFFFFFF" />
</LinearGradientBrush>
</mahapps:MetroProgressBar.Foreground>
</mahapps:MetroProgressBar>
</Grid>
2019-11-29 05:52:23 +00:00
</local:UserControlRx>