-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathdebugPanel.xmmp
25 lines (25 loc) · 977 Bytes
/
debugPanel.xmmp
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
<Project>
<Project.ExportOptions Namespace="Myra.Samples.DebugConsole" Class="DebugPanel" OutputPath="D:\Projects\Myra\samples\Myra.Samples.DebugConsole" />
<VerticalStackPanel Spacing="8" Height="300">
<HorizontalMenu>
<MenuItem Text="&Units">
<MenuItem Text="Add &Orc" />
<MenuItem Text="Add &Peasant" />
<MenuItem Text="Add &Knight" />
<MenuItem Text="Add &Priest" />
<MenuItem Text="Add &Wizard" />
</MenuItem>
<MenuItem Text="&Operations">
<MenuItem Text="Add 10000 &Gold" />
<MenuItem Text="Add 10000 &Wood" />
</MenuItem>
</HorizontalMenu>
<HorizontalStackPanel Spacing="8">
<Label Text="Command:" />
<TextBox StackPanel.ProportionType="Fill" />
</HorizontalStackPanel>
<Button HorizontalAlignment="Center" Id="_buttonHideDebug">
<Label Text="Hide Debug Panel" />
</Button>
</VerticalStackPanel>
</Project>