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.
94 lines
5.3 KiB
94 lines
5.3 KiB
<UserControl x:Class="ICSharpCode.ILSpy.Options.DisplaySettingsPanel" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:properties="clr-namespace:ICSharpCode.ILSpy.Properties" |
|
xmlns:local="clr-namespace:ICSharpCode.ILSpy.Options"> |
|
<UserControl.Resources> |
|
<local:FontSizeConverter x:Key="fontSizeConv" /> |
|
</UserControl.Resources> |
|
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="Auto"/> |
|
<RowDefinition Height="Auto"/> |
|
<RowDefinition/> |
|
</Grid.RowDefinitions> |
|
<GroupBox Header="{x:Static properties:Resources.Font}"> |
|
<Grid> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="Auto" /> |
|
<ColumnDefinition Width="*" /> |
|
<ColumnDefinition Width="Auto" /> |
|
<ColumnDefinition Width="Auto" /> |
|
</Grid.ColumnDefinitions> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="Auto" /> |
|
<RowDefinition Height="50" /> |
|
</Grid.RowDefinitions> |
|
<Label Margin="3,0" Content="{x:Static properties:Resources.DisplaySettingsPanel_Font}"></Label> |
|
<ComboBox x:Name="fontSelector" VerticalContentAlignment="Center" SelectedItem="{Binding SelectedFont}" Grid.Column="1"> |
|
<ComboBox.ItemTemplate> |
|
<DataTemplate> |
|
<TextBlock Text="{Binding Source}" /> |
|
</DataTemplate> |
|
</ComboBox.ItemTemplate> |
|
</ComboBox> |
|
<Label Grid.Column="2" Margin="3,0" Content="{x:Static properties:Resources.Size}"></Label> |
|
<ComboBox Grid.Column="3" Text="{Binding SelectedFontSize, Converter={StaticResource fontSizeConv}}" IsEditable="True" Margin="3,0"> |
|
<ComboBoxItem>6</ComboBoxItem> |
|
<ComboBoxItem>7</ComboBoxItem> |
|
<ComboBoxItem>8</ComboBoxItem> |
|
<ComboBoxItem>9</ComboBoxItem> |
|
<ComboBoxItem>10</ComboBoxItem> |
|
<ComboBoxItem>11</ComboBoxItem> |
|
<ComboBoxItem>12</ComboBoxItem> |
|
<ComboBoxItem>13</ComboBoxItem> |
|
<ComboBoxItem>14</ComboBoxItem> |
|
<ComboBoxItem>15</ComboBoxItem> |
|
<ComboBoxItem>16</ComboBoxItem> |
|
<ComboBoxItem>17</ComboBoxItem> |
|
<ComboBoxItem>18</ComboBoxItem> |
|
<ComboBoxItem>19</ComboBoxItem> |
|
<ComboBoxItem>20</ComboBoxItem> |
|
<ComboBoxItem>21</ComboBoxItem> |
|
<ComboBoxItem>22</ComboBoxItem> |
|
<ComboBoxItem>23</ComboBoxItem> |
|
<ComboBoxItem>24</ComboBoxItem> |
|
</ComboBox> |
|
<Border Grid.Row="1" Grid.ColumnSpan="4" BorderBrush="Black" BorderThickness="1" Background="White" Margin="3,5"> |
|
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Text="AaBbCcXxYyZz" FontFamily="{Binding SelectedFont}" FontSize="{Binding SelectedFontSize}" /> |
|
</Border> |
|
</Grid> |
|
</GroupBox> |
|
<GroupBox Header="{x:Static properties:Resources.Indentation}" Grid.Row="1"> |
|
<StackPanel Margin="3"> |
|
<CheckBox IsChecked="{Binding IndentationUseTabs}" Content="{x:Static properties:Resources.UseTabsInsteadOfSpaces}"></CheckBox> |
|
<StackPanel Orientation="Horizontal"> |
|
<Label Content="{x:Static properties:Resources.TabSize}"></Label> |
|
<TextBox x:Name="tabSizeTextBox" Width="50" Margin="3" Text="{Binding IndentationTabSize}" PreviewTextInput="TextBox_PreviewTextInput" /> |
|
</StackPanel> |
|
<StackPanel Orientation="Horizontal"> |
|
<Label Content="{x:Static properties:Resources.IndentSize}"></Label> |
|
<TextBox x:Name="indentSizeTextBox" Width="50" Margin="3" Text="{Binding IndentationSize}" PreviewTextInput="TextBox_PreviewTextInput" /> |
|
</StackPanel> |
|
</StackPanel> |
|
</GroupBox> |
|
<GroupBox Header="{x:Static properties:Resources.OtherOptions}" Grid.Row="2"> |
|
<StackPanel Margin="3"> |
|
<CheckBox IsChecked="{Binding ShowLineNumbers}" Content="{x:Static properties:Resources.ShowLineNumbers}"></CheckBox> |
|
<CheckBox IsChecked="{Binding ShowMetadataTokens}" Content="{x:Static properties:Resources.ShowMetadataTokens}"></CheckBox> |
|
<CheckBox IsChecked="{Binding ShowMetadataTokensInBase10}" Content="{x:Static properties:Resources.ShowMetadataTokensInBase10}"></CheckBox> |
|
<CheckBox IsChecked="{Binding HideEmptyMetadataTables}" Content="{x:Static properties:Resources.HideEmptyMetadataTables}"></CheckBox> |
|
<CheckBox IsChecked="{Binding ShowDebugInfo}" Content="{x:Static properties:Resources.ShowInfoFromDebugSymbolsAvailable}"></CheckBox> |
|
<CheckBox IsChecked="{Binding EnableWordWrap}" Content="{x:Static properties:Resources.EnableWordWrap}"></CheckBox> |
|
<CheckBox IsChecked="{Binding FoldBraces}" Content="{x:Static properties:Resources.EnableFoldingBlocksBraces}"></CheckBox> |
|
<CheckBox IsChecked="{Binding HighlightMatchingBraces}" Content="{x:Static properties:Resources.HighlightMatchingBraces}"></CheckBox> |
|
<CheckBox IsChecked="{Binding HighlightCurrentLine}" Content="{x:Static properties:Resources.HighlightCurrentLine}"></CheckBox> |
|
<CheckBox IsChecked="{Binding SortResults}" Content="{x:Static properties:Resources.SortResultsFitness}"></CheckBox> |
|
<CheckBox IsChecked="{Binding ExpandMemberDefinitions}" Content="{x:Static properties:Resources.ExpandMemberDefinitionsAfterDecompilation}"></CheckBox> |
|
<CheckBox IsChecked="{Binding ExpandUsingDeclarations}" Content="{x:Static properties:Resources.ExpandUsingDeclarationsAfterDecompilation}"></CheckBox> |
|
</StackPanel> |
|
</GroupBox> |
|
</Grid> |
|
</ScrollViewer> |
|
</UserControl> |