2019-11-07 05:33:08 +00:00
|
|
|
<UserControl
|
|
|
|
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: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"
|
|
|
|
mc:Ignorable="d">
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="40" />
|
|
|
|
<RowDefinition Height="5" />
|
|
|
|
<RowDefinition Height="25" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Rectangle
|
|
|
|
Grid.Row="2"
|
|
|
|
Height="25"
|
|
|
|
Margin="6,0"
|
|
|
|
VerticalAlignment="Top"
|
2019-11-09 04:21:33 +00:00
|
|
|
IsHitTestVisible="False"
|
|
|
|
Visibility="{Binding OverhangShadow, Mode=OneWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}, Converter={StaticResource bool2VisibilityConverter}}">
|
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
|
|
|
|
x:Name="BottomProgressBarDarkGlow"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
Height="16"
|
|
|
|
Margin="-4"
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
Background="Transparent"
|
|
|
|
BorderBrush="Transparent"
|
|
|
|
Foreground="{StaticResource PrimaryVariantBrush}"
|
|
|
|
Maximum="1"
|
2019-11-09 04:21:33 +00:00
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}">
|
2019-11-07 05:33:08 +00:00
|
|
|
<mahapps:MetroProgressBar.Effect>
|
|
|
|
<BlurEffect Radius="25" />
|
|
|
|
</mahapps:MetroProgressBar.Effect>
|
|
|
|
</mahapps:MetroProgressBar>
|
|
|
|
<mahapps:MetroProgressBar
|
|
|
|
x:Name="BottomProgressBarBrightGlow"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
Height="6"
|
|
|
|
Margin="-4"
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
Background="Transparent"
|
|
|
|
BorderBrush="Transparent"
|
|
|
|
Foreground="{StaticResource PrimaryBrush}"
|
|
|
|
Maximum="1"
|
2019-11-09 04:21:33 +00:00
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}">
|
2019-11-07 05:33:08 +00:00
|
|
|
<mahapps:MetroProgressBar.Effect>
|
|
|
|
<BlurEffect Radius="20" />
|
|
|
|
</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"
|
|
|
|
Background="{StaticResource WindowBackgroundBrush}"
|
|
|
|
BorderThickness="0"
|
|
|
|
Foreground="Transparent"
|
|
|
|
Maximum="1"
|
2019-11-09 04:21:33 +00:00
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}" />
|
2019-11-07 05:33:08 +00:00
|
|
|
<mahapps:MetroProgressBar
|
|
|
|
Grid.Column="0"
|
|
|
|
Grid.ColumnSpan="4"
|
|
|
|
Background="Transparent"
|
|
|
|
BorderThickness="0"
|
|
|
|
Foreground="{StaticResource PrimaryVariantBrush}"
|
|
|
|
Maximum="1"
|
2019-11-09 04:21:33 +00:00
|
|
|
Opacity="{Binding ProgressPercent, Mode=OneWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"
|
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}" />
|
2019-11-07 05:33:08 +00:00
|
|
|
<TextBlock
|
|
|
|
Grid.Column="0"
|
|
|
|
Width="90"
|
|
|
|
Margin="10,0,0,8"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
FontFamily="Lucida Sans"
|
|
|
|
FontWeight="Black"
|
2019-11-09 04:21:33 +00:00
|
|
|
Text="{Binding StatePrefixTitle, Mode=OneWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"
|
2019-11-07 05:33:08 +00:00
|
|
|
TextAlignment="Right" />
|
|
|
|
<TextBlock
|
|
|
|
Grid.Column="1"
|
|
|
|
Margin="15,0,0,0"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
FontFamily="Lucida Sans"
|
|
|
|
FontSize="25"
|
|
|
|
FontWeight="Black"
|
2019-11-09 04:21:33 +00:00
|
|
|
Text="{Binding Title, Mode=OneWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}" />
|
|
|
|
<ContentControl Grid.Column="2" />
|
2019-11-07 05:33:08 +00:00
|
|
|
</Grid>
|
|
|
|
<mahapps:MetroProgressBar
|
|
|
|
x:Name="BottomProgressBar"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
Height="5"
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
Background="Transparent"
|
|
|
|
BorderBrush="Transparent"
|
|
|
|
Foreground="{StaticResource PrimaryBrush}"
|
|
|
|
Maximum="1"
|
2019-11-09 04:21:33 +00:00
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}" />
|
2019-11-07 05:33:08 +00:00
|
|
|
<mahapps:MetroProgressBar
|
|
|
|
x:Name="BottomProgressBarHighlight"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
Height="5"
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
Background="Transparent"
|
|
|
|
BorderBrush="Transparent"
|
|
|
|
Maximum="1"
|
2019-11-09 04:21:33 +00:00
|
|
|
Value="{Binding ProgressPercent, Mode=OneWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}">
|
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>
|
|
|
|
</UserControl>
|