-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathCodexWindow.xaml
More file actions
17 lines (15 loc) · 786 Bytes
/
CodexWindow.xaml
File metadata and controls
17 lines (15 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<DefaultWindow xmlns="https://spacestation14.io"
Title="Codex Entries"
SetSize="650 600"
MinSize="650 600">
<BoxContainer Orientation="Vertical" VerticalExpand="True">
<ScrollContainer VerticalExpand="True" HorizontalExpand="True" HScrollEnabled="False">
<BoxContainer Orientation="Vertical" Access="Public">
<Button Name="CreateButton" Text="Create New Entry" Access="Public"></Button>
<Button Name="SectorButton" Text="Edit Sector Status" Access="Public"></Button>
<BoxContainer Orientation="Vertical" Access="Public" Name="CodexContainer">
</BoxContainer>
</BoxContainer>
</ScrollContainer>
</BoxContainer>
</DefaultWindow>