mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
32 lines
1.4 KiB
XML
32 lines
1.4 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 DockPanel.Dock="Left" Width="200">
|
|
<ToolBarTray Background="White" DockPanel.Dock="Top">
|
|
<ToolBar Band="1" BandIndex="1">
|
|
<Button Name="butnPrevious">Previous</Button>
|
|
<Separator/>
|
|
<Button Name="butnNext">Next</Button>
|
|
</ToolBar>
|
|
</ToolBarTray>
|
|
<ListBox FontFamily="Consolas" Name="lboxLog" MouseDoubleClick="lboxLog_MouseDoubleClick" />
|
|
</DockPanel>
|
|
<DockPanel DockPanel.Dock="Left">
|
|
<ToolBarTray Background="White" DockPanel.Dock="Top">
|
|
<ToolBar Band="1" BandIndex="1">
|
|
<Button>Continue</Button>
|
|
<Separator/>
|
|
<Button>Step</Button>
|
|
<Separator/>
|
|
<Button>Trace On</Button>
|
|
<Separator/>
|
|
<Button>Trace Off</Button>
|
|
</ToolBar>
|
|
</ToolBarTray>
|
|
<FlowDocumentScrollViewer Name="fdsvSource" />
|
|
</DockPanel>
|
|
</DockPanel>
|
|
</Window>
|