|
14 | 14 | AllowsTransparency="True" |
15 | 15 | BorderThickness="0" |
16 | 16 | Background="Transparent" |
17 | | - Height="446.995" |
18 | | - Width="718.087" |
| 17 | + Height="420" |
| 18 | + Width="670" |
19 | 19 | Loaded="Cloaks_Loaded" |
20 | 20 | > |
21 | 21 | <Window.TaskbarItemInfo> |
|
26 | 26 | ></TaskbarItemInfo> |
27 | 27 | </Window.TaskbarItemInfo> |
28 | 28 |
|
29 | | - <Grid> |
30 | | - |
31 | | - <Grid.RowDefinitions> |
32 | | - <RowDefinition Height="239*"/> |
33 | | - <RowDefinition Height="208*"/> |
34 | | - </Grid.RowDefinitions> |
35 | | - <Grid.ColumnDefinitions> |
36 | | - <ColumnDefinition Width="127*"/> |
37 | | - <ColumnDefinition Width="7*"/> |
38 | | - </Grid.ColumnDefinitions> |
39 | | - |
40 | | - |
41 | | - <Border x:Name="MainBorder" BorderThickness="0" HorizontalAlignment="Center" Height="382" Margin="34,42,4,23" VerticalAlignment="Center" Width="642" Background="#FF151515" CornerRadius="5" Grid.RowSpan="2"> |
| 29 | + <Grid HorizontalAlignment="Center" VerticalAlignment="Center"> |
| 30 | + <Border x:Name="MainBorder" BorderThickness="0" HorizontalAlignment="Center" Height="400" Margin="0" VerticalAlignment="Center" Width="650" Background="#FF151515" CornerRadius="5" Grid.RowSpan="2"> |
42 | 31 | <Border.Effect> |
43 | | - <DropShadowEffect ShadowDepth="0"/> |
| 32 | + <DropShadowEffect ShadowDepth="0" BlurRadius="10"/> |
44 | 33 | </Border.Effect> |
45 | 34 | <Grid> |
46 | 35 |
|
47 | 36 | <!--Window Title Bar--> |
48 | 37 | <Border x:Name="TopBorder" Style="{DynamicResource windowTitleBar}" MouseDown="TopBorder_MouseDown"> |
49 | 38 | <Grid Margin="-1,-1,1,1"> |
50 | 39 | <Label x:Name="TopBorderCloaksMainLabel" Content="Cloaks+" Style="{DynamicResource windowTitle}"/> |
51 | | - <Image x:Name="Logo" Source="Assets/logo_transparent.png" Margin="1,0,611,1"/> |
52 | | - <Button Content="" Style="{DynamicResource windowButton}" Margin="612,0,0,0" Click="CloseButton_Click"/> |
53 | | - <Button Content="" Style="{DynamicResource windowButton}" Margin="577,0,0,0" Click="MinimizeButton_Click"/> |
| 40 | + <Image x:Name="Logo" Source="Assets/logo_transparent.png" Margin="2,0,0,0" HorizontalAlignment="Left" VerticalAlignment="Center"/> |
| 41 | + <Button Content="" Style="{DynamicResource windowButton}" Margin="0,0,0,0" Click="CloseButton_Click"/> |
| 42 | + <Button Content="" Style="{DynamicResource windowButton}" Margin="0,0,32,0" Click="MinimizeButton_Click"/> |
54 | 43 | </Grid> |
55 | 44 | </Border> |
56 | 45 |
|
57 | | - <Border x:Name="HomeFrame" Style="{DynamicResource frame}"> |
58 | | - <Grid Margin="0,0,-20,0" > |
| 46 | + <Border x:Name="HomeFrame" Style="{DynamicResource frame}" > |
| 47 | + <Grid Margin="0,0,-20,0"> |
59 | 48 | <Image Style="{DynamicResource frameImage}"/> |
60 | 49 | <Label Content="Cloaks+" Style="{DynamicResource frameTitle}"/> |
61 | 50 |
|
|
123 | 112 |
|
124 | 113 | </Grid> |
125 | 114 | </Border> |
126 | | - |
127 | | - |
128 | | - <Border x:Name="SelectFrame" CornerRadius="2.5,2.5,0,0" Background="#FF1C1C1C" HorizontalAlignment="Left" Height="335" Margin="-90,92,0,20" VerticalAlignment="Center" Width="148" Grid.RowSpan="2"> |
| 115 | + |
| 116 | + |
| 117 | + <Border x:Name="SelectFrame" Style="{StaticResource nav}"> |
129 | 118 | <Grid> |
130 | 119 | <Image Source="Assets/banner.png" Margin="10,10,10,286"/> |
131 | 120 | <Image Source="Assets/line.png" Margin="0,10,0,239"/> |
132 | 121 |
|
133 | | - <Button x:Name="SideHomeButton" Style="{StaticResource hoverButton}" Margin="10,96,0,211" Click="HomeFrame_Click" Background="#434343"> |
134 | | - <Grid> |
135 | | - <Image Source="Assets/icons/home.png" Margin="7,1,93,2"/> |
| 122 | + <Button x:Name="SideHomeButton" Style="{StaticResource navButton}" Margin="0, -50, 0, 0" Click="HomeFrame_Click" Background="#434343"> |
| 123 | + <Grid Style="{StaticResource navButtonGrid}"> |
| 124 | + <Image Source="Assets/icons/home.png" Margin="20, 4, 0, 4" HorizontalAlignment="Left"/> |
136 | 125 | <Label Content="Home" Style="{StaticResource navText}"/> |
137 | 126 | </Grid> |
138 | 127 | </Button> |
139 | | - |
140 | | - <Button x:Name="InstallButtonSide" Style="{StaticResource hoverButton}" Margin="10,129,0,178" Click="InstallFrame_Click"> |
141 | | - <Grid> |
142 | | - <Image Source="Assets/icons/download.png" Margin="7,1,93,2"/> |
| 128 | + |
| 129 | + <Button x:Name="InstallButtonSide" Style="{StaticResource navButton}" Margin="0, 20, 0, 0" Click="InstallFrame_Click"> |
| 130 | + <Grid Style="{StaticResource navButtonGrid}"> |
| 131 | + <Image Source="Assets/icons/download.png" Margin="20, 4, 0, 4" HorizontalAlignment="Left"/> |
143 | 132 | <Label Content="Install" Style="{StaticResource navText}"/> |
144 | 133 | </Grid> |
145 | 134 | </Button> |
146 | | - |
147 | | - <Button x:Name="CreditsButtonSide" Style="{StaticResource hoverButton}" Margin="10,162,0,145" Click="CreditsFrame_Click"> |
148 | | - <Grid> |
149 | | - <Image Source="Assets/icons/people.png" Margin="7,1,93,2"/> |
| 135 | + |
| 136 | + <Button x:Name="CreditsButtonSide" Style="{StaticResource navButton}" Margin="0, 90, 0, 0" Click="CreditsFrame_Click"> |
| 137 | + <Grid Style="{StaticResource navButtonGrid}"> |
| 138 | + <Image Source="Assets/icons/people.png" Margin="20, 4, 0, 4" HorizontalAlignment="Left"/> |
150 | 139 | <Label Content="Credits" Style="{StaticResource navText}"/> |
151 | 140 | </Grid> |
152 | 141 | </Button> |
153 | 142 |
|
154 | | - <Label Content="Cloaks+ v.1.4" Style="{StaticResource navVersion}" Margin="3, 305, 0, 0" Width="124"/> |
| 143 | + <Label Content="Cloaks+ v.1.4" Style="{StaticResource navVersion}" Margin="3, 0, 0, 3" Width="124" VerticalAlignment="Bottom"/> |
155 | 144 | </Grid> |
156 | 145 | </Border> |
157 | 146 | </Grid> |
|
0 commit comments