-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2560 Middle Thirds.xaml
59 lines (45 loc) · 1.58 KB
/
2560 Middle Thirds.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Grid
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:zones="clr-namespace:LostTech.Stack.Zones;assembly=Stack"
zones:Layout.Version="2"
mc:Ignorable="d"
Width="2100" Height="900"
d:DesignWidth="2100"
d:DesignHeight="900"
>
<!-- Separate the screen into three vertical regions with no fancy UI or tabs -->
<!-- Define relative column widths -->
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="2560px"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<!-- Column 0, left sidebar -->
<Grid Grid.Column="0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<zones:Zone x:Name="LeftSideSingle" Id="Side" Grid.Row="1" />
</Grid>
<!-- Column 1, main center section -->
<Grid Grid.Column="1">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<zones:Zone x:Name="Main" Grid.Row="1" />
</Grid>
<!-- Column 2, right sidebar -->
<Grid Grid.Column="2">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<zones:Zone x:Name="RightSideSingle" Id="Side" Grid.Row="1" />
</Grid>
</Grid>