Cosmos/source/Cosmos.Build.Windows/DebugWindow.xaml

11 lines
942 B
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="300" Width="356" Icon="/Cosmos.Build.Windows;component/Cosmos.ico">
<Grid Name="DebugGrid" Width="356">
<TextBlock Height="79" Name="textBlock1" VerticalAlignment="Top" TextWrapping="WrapWithOverflow">This is the debug window. Coming soon! For now, leave me open until you are done. Close and the application will terminate.</TextBlock>
<Label Height="28" Margin="11,55,140,0" Name="label1" VerticalAlignment="Top">Executing Instruction Pointer(EIP):</Label>
<Label Height="28" Margin="0,55,14,0" Name="lablEIP" VerticalAlignment="Top" HorizontalAlignment="Right" Width="126"></Label>
<ListBox FontFamily="Consolas" Margin="10,84,14,8" Name="lboxLog" />
</Grid>
</Window>