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.
21 lines
1.4 KiB
21 lines
1.4 KiB
<UserControl x:Class="ICSharpCode.ILSpy.Options.DecompilerSettingsPanel" |
|
x:ClassModifier="internal" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:options="clr-namespace:ICSharpCode.ILSpy.Options" |
|
xmlns:controls="clr-namespace:ICSharpCode.ILSpy.Controls"> |
|
<UserControl.Resources> |
|
<controls:BoolToVisibilityConverter x:Key="boolConv" /> |
|
</UserControl.Resources> |
|
<StackPanel Margin="10"> |
|
<CheckBox IsChecked="{Binding UseDebugSymbols}">Use variable names from debug symbols, if available</CheckBox> |
|
<CheckBox IsChecked="{Binding ShowDebugInfo}">Show info from debug symbols, if available</CheckBox> |
|
<CheckBox IsChecked="{Binding ShowXmlDocumentation}">Show XML documentation in decompiled code</CheckBox> |
|
<CheckBox IsChecked="{Binding FoldBraces}">Enable folding on all blocks in braces</CheckBox> |
|
<CheckBox IsChecked="{Binding RemoveDeadCode}">Remove dead and side effect free code</CheckBox> |
|
<CheckBox IsChecked="{Binding UsingDeclarations}">Insert using declarations</CheckBox> |
|
<CheckBox IsChecked="{Binding FullyQualifyAmbiguousTypeNames}">Fully qualify ambiguous type names</CheckBox> |
|
<CheckBox IsChecked="{Binding AlwaysUseBraces}">Always use braces</CheckBox> |
|
<CheckBox IsChecked="{Binding ExpandMemberDefinitions}">Expand member definitions after decompilation</CheckBox> |
|
</StackPanel> |
|
</UserControl> |