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.
20 lines
919 B
20 lines
919 B
<UserControl x:Class="ICSharpCode.ILSpy.ReadyToRun.ReadyToRunOptionPage" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
|
<StackPanel> |
|
<Grid ShowGridLines="False"> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition></ColumnDefinition> |
|
<ColumnDefinition></ColumnDefinition> |
|
</Grid.ColumnDefinitions> |
|
<Grid.RowDefinitions> |
|
<RowDefinition></RowDefinition> |
|
<RowDefinition></RowDefinition> |
|
</Grid.RowDefinitions> |
|
<TextBlock Grid.Row="0" Grid.Column="0">Disassembly Format</TextBlock> |
|
<ComboBox Grid.Row="0" Grid.Column="1" ItemsSource="{Binding DisassemblyFormats}" SelectedItem="{Binding DisassemblyFormat}"/> |
|
<TextBlock Grid.Row="1" Grid.Column="0">Show Unwind Info</TextBlock> |
|
<CheckBox Grid.Row="1" Grid.Column="1" IsChecked="{Binding IsShowUnwindInfo}"></CheckBox> |
|
</Grid> |
|
</StackPanel> |
|
</UserControl> |