|
|
|
@ -17,6 +17,9 @@
@@ -17,6 +17,9 @@
|
|
|
|
|
<BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" /> |
|
|
|
|
</Window.Resources> |
|
|
|
|
<Window.CommandBindings> |
|
|
|
|
<CommandBinding |
|
|
|
|
Command="routedCommands:RoutedUICommands.DebugExecutable" |
|
|
|
|
Executed="DebugExecutableExecuted" /> |
|
|
|
|
<CommandBinding |
|
|
|
|
Command="routedCommands:RoutedUICommands.RemoveAllBreakpoint" |
|
|
|
|
Executed="RemoveAllBreakpointExecuted" /> |
|
|
|
@ -120,6 +123,12 @@
@@ -120,6 +123,12 @@
|
|
|
|
|
<Image Width="16" Height="16" Source="pack://application:,,,/ILSpy.Debugger;component/Images/DeleteAllBreakpoints.png" /> |
|
|
|
|
</MenuItem.Icon> |
|
|
|
|
</MenuItem> |
|
|
|
|
<Separator/> |
|
|
|
|
<MenuItem x:Name="DebugExecutableItem" Header="Debug an executable" Command="routedCommands:RoutedUICommands.DebugExecutable"> |
|
|
|
|
<MenuItem.Icon> |
|
|
|
|
<Image Width="16" Height="16" Source="pack://application:,,,/ILSpy.Debugger;component/Images/application-x-executable.png" /> |
|
|
|
|
</MenuItem.Icon> |
|
|
|
|
</MenuItem> |
|
|
|
|
|
|
|
|
|
</MenuItem> |
|
|
|
|
<MenuItem Header="_Help"> |
|
|
|
@ -169,6 +178,9 @@
@@ -169,6 +178,9 @@
|
|
|
|
|
<Button x:Name="AttachButton" Command="routedCommands:RoutedUICommands.AttachToProcess" ToolTip="Attach to running process..."> |
|
|
|
|
<Image Width="16" Height="16" Source="pack://application:,,,/ILSpy.Debugger;component/Images/bug.png" /> |
|
|
|
|
</Button> |
|
|
|
|
<Button x:Name="DebugExecutableButton" Command="routedCommands:RoutedUICommands.DebugExecutable" ToolTip="Debug an executable"> |
|
|
|
|
<Image Width="16" Height="16" Source="pack://application:,,,/ILSpy.Debugger;component/Images/application-x-executable.png" /> |
|
|
|
|
</Button> |
|
|
|
|
</ToolBar> |
|
|
|
|
<!-- Main grid separating left pane (treeView) from main pane (textEditor) --> |
|
|
|
|
<Grid> |
|
|
|
|