mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
760 B
13 lines
760 B
<UserControl x:Class="ICSharpCode.ILSpy.Options.DebuggerSettingsPanel" |
|
x:ClassModifier="internal" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
|
<Grid> |
|
<StackPanel Margin="10"> |
|
<CheckBox IsChecked="{Binding ShowWarnings}">Show warning messages</CheckBox> |
|
<CheckBox IsChecked="{Binding AskForArguments}">Ask for arguments and working directory before executing a process</CheckBox> |
|
<CheckBox IsChecked="{Binding ShowAllBookmarks}">Show all bookmarks in breakpoints window</CheckBox> |
|
<CheckBox IsChecked="{Binding BreakAtBeginning}">Break debugged process at start or attach</CheckBox> |
|
</StackPanel> |
|
</Grid> |
|
</UserControl> |