Browse Source

Clean up XAML of ReadyToRunOptionPage and use Margin="3" everywhere.

pull/2043/head
Siegfried Pammer 5 years ago
parent
commit
79b24e26fa
  1. 36
      ILSpy.ReadyToRun/ReadyToRunOptionPage.xaml

36
ILSpy.ReadyToRun/ReadyToRunOptionPage.xaml

@ -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…
Cancel
Save