github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

devhawk / LightweightDebuggerDemo

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 4
    • 1
  • Source
  • Commits
  • Network (1)
  • Issues (0)
  • Downloads (0)
  • Wiki (1)
  • Graphs
  • Tree: deac85a

click here to add a description

click here to add a homepage

  • Branches (1)
    • master
  • Tags (0)
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.
  cancel

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

Added support for StepOut 
Harry Pierson (author)
Tue Oct 06 12:12:56 -0700 2009
commit  deac85aaf14b37352ce4248917fd857c173d8997
tree    de78d9a0daffbc4205feae3f2538ecb75daafcdc
parent  d65f68d1470b2fbdda15d6c164d3f46f4aa6e0a4
LightweightDebuggerDemo / LightweightDebuggerDemo / DebugWindow.xaml LightweightDebuggerDemo/DebugWindow.xaml
100644 34 lines (29 sloc) 1.581 kb
edit raw blame history
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
26
27
28
29
30
31
32
33
34
<Window x:Class="LightweightDebuggerDemo.DebugWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:ldd="clr-namespace:LightweightDebuggerDemo"
    Title="DebugWindow" Height="300" Width="300" Closed="Window_Closed" Loaded="Window_Loaded" Closing="Window_Closing">
    <Window.CommandBindings>
        <CommandBinding Command="ldd:DebugCommands.StepIn" Executed="StepInExecuted"/>
        <CommandBinding Command="ldd:DebugCommands.StepOut" Executed="StepOutExecuted"/>
    </Window.CommandBindings>
    <Window.InputBindings>
        <KeyBinding Command="ldd:DebugCommands.StepIn" Key="S"/>
        <KeyBinding Command="ldd:DebugCommands.StepOut" Key="O"/>
    </Window.InputBindings>
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="25" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>
 
        <Menu>
            <MenuItem Header="Step">
                <MenuItem Command="ldd:DebugCommands.StepIn" InputGestureText="S"></MenuItem>
                <MenuItem Command="ldd:DebugCommands.StepOver"></MenuItem>
                <MenuItem Command="ldd:DebugCommands.StepOut" InputGestureText="O"></MenuItem>
            </MenuItem>
            <TextBlock x:Name="dbgStatus"></TextBlock>
            
        </Menu>
 
        <RichTextBox Grid.Row="1" Name="rtbSource" FontFamily="Consolas" FontSize="14" Background="Black" Foreground="White" IsReadOnly="True" VerticalScrollBarVisibility="Auto"></RichTextBox>
 
    </Grid>
</Window>
 
Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server