mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
35 lines
1.6 KiB
XML
35 lines
1.6 KiB
XML
<Window x:Class="Cosmos.Build.Windows.DebugWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Cosmos Debugger" Height="351" Width="551" Icon="/Cosmos.Build.Windows;component/Cosmos.ico"
|
|
WindowState="Maximized">
|
|
<DockPanel>
|
|
<DockPanel Width="200" DockPanel.Dock="Left">
|
|
<ToolBarTray Background="White" DockPanel.Dock="Top">
|
|
<ToolBar Band="1" BandIndex="1">
|
|
<Button Name="butnLogClear">Clear</Button>
|
|
<Separator/>
|
|
</ToolBar>
|
|
</ToolBarTray>
|
|
<ListBox FontFamily="Consolas" Name="lboxLog" />
|
|
</DockPanel>
|
|
<DockPanel DockPanel.Dock="Left">
|
|
<ToolBarTray Background="White" DockPanel.Dock="Top">
|
|
<ToolBar Band="1" BandIndex="1">
|
|
<Button IsEnabled="False">Continue</Button>
|
|
<Separator/>
|
|
<Button Name="butnStep">Step</Button>
|
|
<Separator/>
|
|
<Button Name="butnTraceOn">Trace On</Button>
|
|
<Separator/>
|
|
<Button Name="butnTraceOff">Trace Off</Button>
|
|
<Separator/>
|
|
<Button Name="butnBreak">Break</Button>
|
|
<Separator/>
|
|
<Button Name="butnTest">Test</Button>
|
|
</ToolBar>
|
|
</ToolBarTray>
|
|
<FlowDocumentScrollViewer Name="fdsvSource" />
|
|
</DockPanel>
|
|
</DockPanel>
|
|
</Window>
|