mirror of https://github.com/icsharpcode/ILSpy.git
1 changed files with 17 additions and 19 deletions
@ -1,23 +1,21 @@ |
|||||||
<UserControl x:Class="ICSharpCode.ILSpy.ReadyToRun.ReadyToRunOptionPage" |
<UserControl x:Class="ICSharpCode.ILSpy.ReadyToRun.ReadyToRunOptionPage" |
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
||||||
<StackPanel> |
<Grid> |
||||||
<Grid ShowGridLines="False"> |
<Grid.ColumnDefinitions> |
||||||
<Grid.ColumnDefinitions> |
<ColumnDefinition /> |
||||||
<ColumnDefinition></ColumnDefinition> |
<ColumnDefinition /> |
||||||
<ColumnDefinition></ColumnDefinition> |
</Grid.ColumnDefinitions> |
||||||
</Grid.ColumnDefinitions> |
<Grid.RowDefinitions> |
||||||
<Grid.RowDefinitions> |
<RowDefinition Height="Auto" /> |
||||||
<RowDefinition></RowDefinition> |
<RowDefinition Height="Auto" /> |
||||||
<RowDefinition></RowDefinition> |
<RowDefinition Height="Auto" /> |
||||||
<RowDefinition></RowDefinition> |
</Grid.RowDefinitions> |
||||||
</Grid.RowDefinitions> |
<TextBlock Margin="3">Disassembly Format</TextBlock> |
||||||
<TextBlock Grid.Row="0" Grid.Column="0">Disassembly Format</TextBlock> |
<ComboBox Grid.Column="1" Margin="3" ItemsSource="{Binding DisassemblyFormats}" SelectedItem="{Binding DisassemblyFormat}" /> |
||||||
<ComboBox Grid.Row="0" Grid.Column="1" ItemsSource="{Binding DisassemblyFormats}" SelectedItem="{Binding DisassemblyFormat}"/> |
<TextBlock Grid.Row="1" Margin="3">Show Unwind Info</TextBlock> |
||||||
<TextBlock Grid.Row="1" Grid.Column="0">Show Unwind Info</TextBlock> |
<CheckBox Grid.Row="1" Grid.Column="1" Margin="3" IsChecked="{Binding IsShowUnwindInfo}" /> |
||||||
<CheckBox Grid.Row="1" Grid.Column="1" IsChecked="{Binding IsShowUnwindInfo}"></CheckBox> |
<TextBlock Grid.Row="2" Margin="3">Show Debug Info</TextBlock> |
||||||
<TextBlock Grid.Row="2" Grid.Column="0">Show Debug Info</TextBlock> |
<CheckBox Grid.Row="2" Grid.Column="1" Margin="3" IsChecked="{Binding DebugIsChecked}" /> |
||||||
<CheckBox Grid.Row="2" Grid.Column="1" IsChecked="{Binding DebugIsChecked}"></CheckBox> |
</Grid> |
||||||
</Grid> |
|
||||||
</StackPanel> |
|
||||||
</UserControl> |
</UserControl> |
Loading…
Reference in new issue