-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.axaml
More file actions
156 lines (132 loc) · 4.81 KB
/
MainWindow.axaml
File metadata and controls
156 lines (132 loc) · 4.81 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:explorer="clr-namespace:PaintPower.FileExplorer"
xmlns:editors="clr-namespace:PaintPower.Editors"
xmlns:vm="clr-namespace:PaintPower.VMPanel"
xmlns:sprite="clr-namespace:PaintPower.SpriteEditor"
x:Class="PaintPower.MainWindow"
Width="1120" Height="570"
Title="PaintPower">
<Grid RowDefinitions="50,*">
<!-- HEADER Background="#e0e0e0" -->
<Border Grid.Row="0" Background="#a3a3a3">
<Grid ColumnDefinitions="200,*,300" VerticalAlignment="Center">
<!-- LEFT: App title -->
<TextBlock Text="PaintPower"
VerticalAlignment="Center"
Margin="12,0"
FontSize="20"
Foreground="#333" />
<TextBlock Text=""
Margin="17,-10"
FontSize="10"
Foreground="black"
x:Name="VersionInfoTextBlock" />
<!-- CENTER: Menu buttons -->
<StackPanel Orientation="Horizontal"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Spacing="16"
Grid.Column="1"
Margin="12,0">
<Menu Grid.Column="1" Margin="12,0">
<MenuItem x:Name="FileMenu" Header="File">
<MenuItem x:Name="FileNew" Header="New" Click="OnFileNew" />
<MenuItem x:Name="FileOpen" Header="Open..." Click="OnFileOpen" />
<MenuItem x:Name="FileSave" Header="Save" Click="OnFileSave" />
<MenuItem x:Name="FileSaveAs" Header="Save As..." Click="OnFileSaveAs" />
<MenuItem x:Name="FileExit" Header="Exit" Click="OnFileExit" />
</MenuItem>
<MenuItem x:Name="EditMenu" Header="Edit">
<MenuItem x:Name="EditUndo" Header="Undo" Click="OnEditUndo" />
<MenuItem x:Name="EditRedo" Header="Redo" Click="OnEditRedo" />
<MenuItem x:Name="EditCut" Header="Cut" Click="OnEditCut" />
<MenuItem x:Name="EditCopy" Header="Copy" Click="OnEditCopy" />
<MenuItem x:Name="EditPaste" Header="Paste" Click="OnEditPaste" />
</MenuItem>
<MenuItem x:Name="ServerMenu" Header="Server">
<MenuItem x:Name="MakeConnection" Header="Make Connection"
Click="OnMakeConnection" />
<MenuItem x:Name="UploadProject" Header="Upload Project to server!"
Click="OnUploadProject" />
<MenuItem x:Name="OpenCollaborators" Header="Open collaborators" />
</MenuItem>
<MenuItem x:Name="LanguageDropdown" Header="Language" />
</Menu>
</StackPanel>
<!-- RIGHT: Status area -->
<StackPanel Orientation="Horizontal"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Spacing="16"
Grid.Column="2"
Margin="0,0,12,0">
<TextBlock Text="" VerticalAlignment="Center" x:Name="ProjectStatus" />
<TextBlock Text="Not connected, not logged in."
VerticalAlignment="Center"
Foreground="#437" />
<Menu Grid.Column="1" Margin="12,0">
<MenuItem x:Name="HelpMenu" Header="Help">
<MenuItem x:Name="HelpDocumentation" Header="Documentation"
Click="OnHelpDocumentation" />
<MenuItem x:Name="HelpReportBug" Header="Report a Bug"
Click="OnHelpReportBug" />
<MenuItem x:Name="HelpAbout" Header="About" Click="OnHelpAbout" />
</MenuItem>
</Menu>
<!--User
dropdown menu.-->
<Menu></Menu>
</StackPanel>
</Grid>
</Border>
<!-- MAIN CONTENT -->
<Grid Grid.Row="1" ColumnDefinitions="260,5,*,5,340">
<!-- BACKGROUND -->
<Grid.Background>
<ImageBrush Source="avares://PaintPower/Assets/Background.png"
Stretch="None"
TileMode="Tile"
AlignmentX="Left"
AlignmentY="Top"
DestinationRect="0,0,10,10" />
</Grid.Background>
<!-- OUTER LEFT: Sprite Manager + Sprite Properties -->
<Grid Grid.Column="0" RowDefinitions="*,5,*">
<!-- SPRITE MANAGER -->
<sprite:SpriteManagerView Grid.Row="0" x:Name="SpriteManager" Margin="0,0,0,5" />
<GridSplitter Grid.Row="1"
Height="5"
Background="#505050"
ResizeDirection="Rows"
ResizeBehavior="PreviousAndNext" />
<!-- SPRITE PROPERTIES -->
<Border Grid.Row="2" Background="#252525">
<TextBlock Text="Sprite Properties"
Foreground="White"
Margin="8" />
<!-- TODO: Replace with your SpriteProperties control -->
</Border>
</Grid>
<!-- SPLITTER between LEFT and CENTER -->
<GridSplitter Grid.Column="1"
Width="5"
Background="#505050"
ResizeDirection="Columns"
ResizeBehavior="PreviousAndNext" />
<!-- OUTER CENTER: Sprite Editor Host -->
<ContentControl x:Name="CenterHost"
Grid.Column="2"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch" />
<!-- SPLITTER between CENTER and RIGHT -->
<GridSplitter Grid.Column="3"
Width="5"
Background="#505050"
ResizeDirection="Columns"
ResizeBehavior="PreviousAndNext" />
<!-- OUTER RIGHT: VM Panel -->
<vm:VmPanel x:Name="VmPanelPanel" Grid.Column="4" />
</Grid>
</Grid>
</Window>