mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix main menu coloring
This commit is contained in:
parent
91462dbd20
commit
e4e634a1fd
@ -8,7 +8,8 @@
|
||||
xmlns:mahapps="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:viewModels="clr-namespace:Wabbajack.View_Models"
|
||||
Title="Wabbajack"
|
||||
ShowTitleBar="False"
|
||||
Title="WABBAJACK"
|
||||
Width="1280"
|
||||
Height="960"
|
||||
MinWidth="850"
|
||||
@ -21,12 +22,24 @@
|
||||
UseLayoutRounding="True"
|
||||
WindowTitleBrush="{StaticResource MahApps.Brushes.Accent}"
|
||||
mc:Ignorable="d">
|
||||
<Grid Background="#121212" MouseDown="UIElement_OnMouseDown">
|
||||
<TabControl x:Name="Tabs">
|
||||
<Grid Background="#121212" MouseDown="UIElement_OnMouseDown">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition></RowDefinition>
|
||||
</Grid.RowDefinitions>
|
||||
<Rectangle Grid.Row="0">
|
||||
<Rectangle.Fill>
|
||||
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
||||
<GradientStop Offset="0" Color="#16BB86FC" />
|
||||
<GradientStop Offset="0.4" Color="#00000000" />
|
||||
</LinearGradientBrush>
|
||||
</Rectangle.Fill>
|
||||
</Rectangle>
|
||||
<TabControl Grid.Row="0" x:Name="Tabs">
|
||||
<TabItem>
|
||||
<TabItem.Header>
|
||||
<TextBlock FontSize="16" Margin="0, 0, 8, 0">WABBAJACK 3.0.0</TextBlock>
|
||||
</TabItem.Header>
|
||||
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*"></RowDefinition>
|
||||
|
@ -17,6 +17,14 @@
|
||||
<RowDefinition Height="1*" />
|
||||
<RowDefinition Height="15" />
|
||||
</Grid.RowDefinitions>
|
||||
<Rectangle Grid.Row="0" Grid.RowSpan="3">
|
||||
<Rectangle.Fill>
|
||||
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
||||
<GradientStop Offset="0" Color="#121212" />
|
||||
<GradientStop Offset="1" Color="#121212" />
|
||||
</LinearGradientBrush>
|
||||
</Rectangle.Fill>
|
||||
</Rectangle>
|
||||
<Viewbox Grid.Row="0" Grid.RowSpan="3"
|
||||
Name="Banner"
|
||||
HorizontalAlignment="Center"
|
||||
@ -24,14 +32,7 @@
|
||||
Stretch="UniformToFill">
|
||||
<Image Margin="40,20,40,240" Source="../Resources/Wabba_Mouth.png" />
|
||||
</Viewbox>
|
||||
<Rectangle Grid.Row="0" Grid.RowSpan="3">
|
||||
<Rectangle.Fill>
|
||||
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
||||
<GradientStop Offset="0" Color="#16BB86FC" />
|
||||
<GradientStop Offset="0.4" Color="#00000000" />
|
||||
</LinearGradientBrush>
|
||||
</Rectangle.Fill>
|
||||
</Rectangle>
|
||||
|
||||
<Grid Grid.Row="1" Margin="5,15">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
|
Loading…
Reference in New Issue
Block a user