mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
30 lines
1.3 KiB
Plaintext
30 lines
1.3 KiB
Plaintext
|
<UserControl
|
||
|
x:Class="Wabbajack.HeatedBackgroundView"
|
||
|
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"
|
||
|
d:DesignHeight="450"
|
||
|
d:DesignWidth="800"
|
||
|
mc:Ignorable="d">
|
||
|
<Grid>
|
||
|
<Rectangle>
|
||
|
<Rectangle.Fill>
|
||
|
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
||
|
<GradientStop Offset="0" Color="#191919" />
|
||
|
<GradientStop Offset="0.4" Color="#00191919" />
|
||
|
</LinearGradientBrush>
|
||
|
</Rectangle.Fill>
|
||
|
</Rectangle>
|
||
|
<Rectangle Opacity="{Binding PercentCompleted, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}">
|
||
|
<Rectangle.Fill>
|
||
|
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
||
|
<GradientStop Offset="0.2" Color="{StaticResource PrimaryVariant}" />
|
||
|
<GradientStop Offset="1" Color="{StaticResource WindowBackgroundColor}" />
|
||
|
</LinearGradientBrush>
|
||
|
</Rectangle.Fill>
|
||
|
</Rectangle>
|
||
|
</Grid>
|
||
|
</UserControl>
|