mirror of https://github.com/icsharpcode/ILSpy.git
12 changed files with 334 additions and 301 deletions
@ -1,63 +1,68 @@
@@ -1,63 +1,68 @@
|
||||
<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:properties="clr-namespace:ICSharpCode.ILSpy.Properties" |
||||
xmlns:options="clr-namespace:ICSharpCode.ILSpy.Options"> |
||||
<UserControl.Resources> |
||||
<CollectionViewSource x:Key="SettingsCollection" Source="{Binding Settings}"> |
||||
<CollectionViewSource.GroupDescriptions> |
||||
<PropertyGroupDescription PropertyName="Category" /> |
||||
</CollectionViewSource.GroupDescriptions> |
||||
</CollectionViewSource> |
||||
</UserControl.Resources> |
||||
<Grid> |
||||
<Grid.RowDefinitions> |
||||
<RowDefinition Height="Auto" /> |
||||
<RowDefinition Height="*" /> |
||||
</Grid.RowDefinitions> |
||||
<Grid.ColumnDefinitions> |
||||
<ColumnDefinition Width="*" /> |
||||
</Grid.ColumnDefinitions> |
||||
<TextBlock Margin="3" Grid.ColumnSpan="3" TextWrapping="Wrap" Text="{x:Static properties:Resources.DecompilerSettingsPanelLongText}" /> |
||||
<ListBox Grid.Row="1" ItemsSource="{Binding Source={StaticResource SettingsCollection}}"> |
||||
<ListBox.ItemContainerStyle> |
||||
<Style TargetType="ListBoxItem"> |
||||
<Setter Property="IsTabStop" Value="False"/> |
||||
<Setter Property="Focusable" Value="False"/> |
||||
</Style> |
||||
</ListBox.ItemContainerStyle> |
||||
<ListBox.GroupStyle> |
||||
<GroupStyle> |
||||
<GroupStyle.Panel> |
||||
<ItemsPanelTemplate> |
||||
<VirtualizingStackPanel Orientation="Vertical" /> |
||||
</ItemsPanelTemplate> |
||||
</GroupStyle.Panel> |
||||
<GroupStyle.ContainerStyle> |
||||
<Style TargetType="{x:Type GroupItem}" BasedOn="{StaticResource {x:Type GroupItem}}"> |
||||
<Setter Property="Template"> |
||||
<Setter.Value> |
||||
<ControlTemplate> |
||||
<Expander Padding="0" BorderThickness="0" IsExpanded="True"> |
||||
<Expander.Header> |
||||
<CheckBox Checked="OnGroupChecked" Unchecked="OnGroupUnchecked" Loaded="OnGroupLoaded" VerticalContentAlignment="Center" |
||||
FontSize="16" FontWeight="Bold" Content="{Binding Name}" /> |
||||
</Expander.Header> |
||||
<ItemsPresenter/> |
||||
</Expander> |
||||
</ControlTemplate> |
||||
</Setter.Value> |
||||
</Setter> |
||||
</Style> |
||||
</GroupStyle.ContainerStyle> |
||||
</GroupStyle> |
||||
</ListBox.GroupStyle> |
||||
<ListBox.ItemTemplate> |
||||
<DataTemplate> |
||||
<CheckBox Margin="19,0,0,0" IsChecked="{Binding IsEnabled}" Content="{Binding Description}" /> |
||||
</DataTemplate> |
||||
</ListBox.ItemTemplate> |
||||
</ListBox> |
||||
</Grid> |
||||
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:options="clr-namespace:ICSharpCode.ILSpy.Options" |
||||
xmlns:ws="https://schemas.elecho.dev/wpfsuite"> |
||||
<UserControl.Resources> |
||||
<CollectionViewSource x:Key="SettingsCollection" Source="{Binding Settings}"> |
||||
<CollectionViewSource.GroupDescriptions> |
||||
<PropertyGroupDescription PropertyName="Category" /> |
||||
</CollectionViewSource.GroupDescriptions> |
||||
</CollectionViewSource> |
||||
</UserControl.Resources> |
||||
<Grid> |
||||
<Grid.RowDefinitions> |
||||
<RowDefinition Height="Auto" /> |
||||
<RowDefinition Height="*" /> |
||||
</Grid.RowDefinitions> |
||||
<Grid.ColumnDefinitions> |
||||
<ColumnDefinition Width="*" /> |
||||
</Grid.ColumnDefinitions> |
||||
<TextBlock Margin="3" Grid.ColumnSpan="3" TextWrapping="Wrap" Text="{x:Static properties:Resources.DecompilerSettingsPanelLongText}" /> |
||||
<ws:ListBox Grid.Row="1" |
||||
ItemsSource="{Binding Source={StaticResource SettingsCollection}}" |
||||
Background="{DynamicResource {x:Static SystemColors.ControlLightLightBrushKey}}" |
||||
BorderBrush="{DynamicResource {x:Static SystemColors.ControlLightBrushKey}}" |
||||
Padding="-1"> |
||||
<ws:ListBox.ItemContainerStyle> |
||||
<Style TargetType="ListBoxItem"> |
||||
<Setter Property="IsTabStop" Value="False"/> |
||||
<Setter Property="Focusable" Value="False"/> |
||||
</Style> |
||||
</ws:ListBox.ItemContainerStyle> |
||||
<ws:ListBox.GroupStyle> |
||||
<GroupStyle> |
||||
<GroupStyle.Panel> |
||||
<ItemsPanelTemplate> |
||||
<VirtualizingStackPanel Orientation="Vertical" /> |
||||
</ItemsPanelTemplate> |
||||
</GroupStyle.Panel> |
||||
<GroupStyle.ContainerStyle> |
||||
<Style TargetType="{x:Type GroupItem}" BasedOn="{StaticResource {x:Type GroupItem}}"> |
||||
<Setter Property="Template"> |
||||
<Setter.Value> |
||||
<ControlTemplate> |
||||
<Expander Padding="0" BorderThickness="0" IsExpanded="True"> |
||||
<Expander.Header> |
||||
<CheckBox Checked="OnGroupChecked" Unchecked="OnGroupUnchecked" Loaded="OnGroupLoaded" VerticalContentAlignment="Center" |
||||
FontSize="16" FontWeight="Bold" Content="{Binding Name}" /> |
||||
</Expander.Header> |
||||
<ItemsPresenter/> |
||||
</Expander> |
||||
</ControlTemplate> |
||||
</Setter.Value> |
||||
</Setter> |
||||
</Style> |
||||
</GroupStyle.ContainerStyle> |
||||
</GroupStyle> |
||||
</ws:ListBox.GroupStyle> |
||||
<ListBox.ItemTemplate> |
||||
<DataTemplate> |
||||
<CheckBox Margin="19,0,0,0" IsChecked="{Binding IsEnabled}" Content="{Binding Description}" /> |
||||
</DataTemplate> |
||||
</ListBox.ItemTemplate> |
||||
</ws:ListBox> |
||||
</Grid> |
||||
</UserControl> |
@ -1,109 +1,110 @@
@@ -1,109 +1,110 @@
|
||||
<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" |
||||
xmlns:system="clr-namespace:System;assembly=mscorlib" |
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" |
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||
xmlns:themes="clr-namespace:ICSharpCode.ILSpy.Themes" |
||||
d:DataContext="{d:DesignInstance local:DisplaySettingsViewModel}"> |
||||
<UserControl.Resources> |
||||
<local:FontSizeConverter x:Key="fontSizeConv" /> |
||||
</UserControl.Resources> |
||||
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto"> |
||||
<StackPanel Orientation="Vertical"> |
||||
<DockPanel> |
||||
<Label DockPanel.Dock="Left" Content="{x:Static properties:Resources.DisplaySettingsPanel_Theme}" /> |
||||
<ComboBox ItemsSource="{x:Static themes:ThemeManager.AllThemes}" SelectedItem="{Binding Theme}" VerticalContentAlignment="Center" Margin="0,0,8,0" /> |
||||
</DockPanel> |
||||
<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"> |
||||
<system:Int32>6</system:Int32> |
||||
<system:Int32>7</system:Int32> |
||||
<system:Int32>8</system:Int32> |
||||
<system:Int32>9</system:Int32> |
||||
<system:Int32>10</system:Int32> |
||||
<system:Int32>11</system:Int32> |
||||
<system:Int32>12</system:Int32> |
||||
<system:Int32>13</system:Int32> |
||||
<system:Int32>14</system:Int32> |
||||
<system:Int32>15</system:Int32> |
||||
<system:Int32>16</system:Int32> |
||||
<system:Int32>17</system:Int32> |
||||
<system:Int32>18</system:Int32> |
||||
<system:Int32>19</system:Int32> |
||||
<system:Int32>20</system:Int32> |
||||
<system:Int32>21</system:Int32> |
||||
<system:Int32>22</system:Int32> |
||||
<system:Int32>23</system:Int32> |
||||
<system:Int32>24</system:Int32> |
||||
</ComboBox> |
||||
<Border Grid.Row="1" Grid.ColumnSpan="4" BorderBrush="{DynamicResource {x:Static SystemColors.ControlDarkBrushKey}}" BorderThickness="1" 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}"> |
||||
<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.DecompilationViewOptions}"> |
||||
<StackPanel Margin="3"> |
||||
<CheckBox IsChecked="{Binding ShowLineNumbers}" Content="{x:Static properties:Resources.ShowLineNumbers}"></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 ExpandMemberDefinitions}" Content="{x:Static properties:Resources.ExpandMemberDefinitionsAfterDecompilation}"></CheckBox> |
||||
<CheckBox IsChecked="{Binding ExpandUsingDeclarations}" Content="{x:Static properties:Resources.ExpandUsingDeclarationsAfterDecompilation}"></CheckBox> |
||||
<CheckBox IsChecked="{Binding ShowDebugInfo}" Content="{x:Static properties:Resources.ShowInfoFromDebugSymbolsAvailable}"></CheckBox> |
||||
<CheckBox IsChecked="{Binding ShowRawOffsetsAndBytesBeforeInstruction}" Content="{x:Static properties:Resources.ShowRawOffsetsAndBytesBeforeInstruction}"></CheckBox> |
||||
</StackPanel> |
||||
</GroupBox> |
||||
<GroupBox Header="{x:Static properties:Resources.TreeViewOptions}"> |
||||
<StackPanel Margin="3"> |
||||
<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 UseNestedNamespaceNodes}" Content="{x:Static properties:Resources.UseNestedNamespaceNodes}"></CheckBox> |
||||
</StackPanel> |
||||
</GroupBox> |
||||
<GroupBox Header="{x:Static properties:Resources.OtherOptions}"> |
||||
<StackPanel Margin="3"> |
||||
<CheckBox IsChecked="{Binding SortResults}" Content="{x:Static properties:Resources.SortResultsFitness}"></CheckBox> |
||||
<CheckBox IsChecked="{Binding StyleWindowTitleBar}" Content="{x:Static properties:Resources.StyleTheWindowTitleBar}"></CheckBox> |
||||
</StackPanel> |
||||
</GroupBox> |
||||
</StackPanel> |
||||
</ScrollViewer> |
||||
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" |
||||
xmlns:system="clr-namespace:System;assembly=mscorlib" |
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" |
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||
xmlns:themes="clr-namespace:ICSharpCode.ILSpy.Themes" |
||||
xmlns:ws="https://schemas.elecho.dev/wpfsuite" |
||||
d:DataContext="{d:DesignInstance local:DisplaySettingsViewModel}"> |
||||
<UserControl.Resources> |
||||
<local:FontSizeConverter x:Key="fontSizeConv" /> |
||||
</UserControl.Resources> |
||||
<ws:ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto"> |
||||
<StackPanel Orientation="Vertical"> |
||||
<DockPanel> |
||||
<Label DockPanel.Dock="Left" Content="{x:Static properties:Resources.DisplaySettingsPanel_Theme}" /> |
||||
<ComboBox ItemsSource="{x:Static themes:ThemeManager.AllThemes}" SelectedItem="{Binding Theme}" VerticalContentAlignment="Center" Margin="0,0,8,0" /> |
||||
</DockPanel> |
||||
<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"> |
||||
<system:Int32>6</system:Int32> |
||||
<system:Int32>7</system:Int32> |
||||
<system:Int32>8</system:Int32> |
||||
<system:Int32>9</system:Int32> |
||||
<system:Int32>10</system:Int32> |
||||
<system:Int32>11</system:Int32> |
||||
<system:Int32>12</system:Int32> |
||||
<system:Int32>13</system:Int32> |
||||
<system:Int32>14</system:Int32> |
||||
<system:Int32>15</system:Int32> |
||||
<system:Int32>16</system:Int32> |
||||
<system:Int32>17</system:Int32> |
||||
<system:Int32>18</system:Int32> |
||||
<system:Int32>19</system:Int32> |
||||
<system:Int32>20</system:Int32> |
||||
<system:Int32>21</system:Int32> |
||||
<system:Int32>22</system:Int32> |
||||
<system:Int32>23</system:Int32> |
||||
<system:Int32>24</system:Int32> |
||||
</ComboBox> |
||||
<Border Grid.Row="1" Grid.ColumnSpan="4" BorderBrush="{DynamicResource {x:Static SystemColors.ControlDarkBrushKey}}" BorderThickness="1" 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}"> |
||||
<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.DecompilationViewOptions}"> |
||||
<StackPanel Margin="3"> |
||||
<CheckBox IsChecked="{Binding ShowLineNumbers}" Content="{x:Static properties:Resources.ShowLineNumbers}"></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 ExpandMemberDefinitions}" Content="{x:Static properties:Resources.ExpandMemberDefinitionsAfterDecompilation}"></CheckBox> |
||||
<CheckBox IsChecked="{Binding ExpandUsingDeclarations}" Content="{x:Static properties:Resources.ExpandUsingDeclarationsAfterDecompilation}"></CheckBox> |
||||
<CheckBox IsChecked="{Binding ShowDebugInfo}" Content="{x:Static properties:Resources.ShowInfoFromDebugSymbolsAvailable}"></CheckBox> |
||||
<CheckBox IsChecked="{Binding ShowRawOffsetsAndBytesBeforeInstruction}" Content="{x:Static properties:Resources.ShowRawOffsetsAndBytesBeforeInstruction}"></CheckBox> |
||||
</StackPanel> |
||||
</GroupBox> |
||||
<GroupBox Header="{x:Static properties:Resources.TreeViewOptions}"> |
||||
<StackPanel Margin="3"> |
||||
<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 UseNestedNamespaceNodes}" Content="{x:Static properties:Resources.UseNestedNamespaceNodes}"></CheckBox> |
||||
</StackPanel> |
||||
</GroupBox> |
||||
<GroupBox Header="{x:Static properties:Resources.OtherOptions}"> |
||||
<StackPanel Margin="3"> |
||||
<CheckBox IsChecked="{Binding SortResults}" Content="{x:Static properties:Resources.SortResultsFitness}"></CheckBox> |
||||
<CheckBox IsChecked="{Binding StyleWindowTitleBar}" Content="{x:Static properties:Resources.StyleTheWindowTitleBar}"></CheckBox> |
||||
</StackPanel> |
||||
</GroupBox> |
||||
</StackPanel> |
||||
</ws:ScrollViewer> |
||||
</UserControl> |
@ -1,82 +1,83 @@
@@ -1,82 +1,83 @@
|
||||
<UserControl x:Class="ICSharpCode.ILSpy.Search.SearchPane" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
xmlns:controls="clr-namespace:ICSharpCode.ILSpy.Controls" |
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||
xmlns:properties="clr-namespace:ICSharpCode.ILSpy.Properties" |
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" x:Name="self" mc:Ignorable="d" |
||||
d:DesignHeight="300" d:DesignWidth="300"> |
||||
<Grid> |
||||
<Grid.RowDefinitions> |
||||
<RowDefinition Height="Auto"/> |
||||
<RowDefinition Height="3" /> |
||||
<RowDefinition /> |
||||
</Grid.RowDefinitions> |
||||
<Border BorderBrush="{DynamicResource {x:Static SystemColors.ControlLightBrushKey}}" Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" Margin="0"> |
||||
<Grid> |
||||
<Grid.ColumnDefinitions> |
||||
<ColumnDefinition Width="*" /> |
||||
<ColumnDefinition Width="Auto" /> |
||||
</Grid.ColumnDefinitions> |
||||
<controls:SearchBox x:Name="searchBox" DockPanel.Dock="Top" Grid.Column="0" Grid.Row="0" Margin="1" |
||||
PreviewKeyDown="SearchBox_PreviewKeyDown" |
||||
Text="{Binding SearchTerm, ElementName=self}" ToolTip="{x:Static properties:Resources.SearchPane_Search}" UpdateDelay="0:0:0.1" |
||||
WatermarkColor="Gray" WatermarkText="{x:Static properties:Resources.WatermarkText}" /> |
||||
<StackPanel Grid.Column="1" Grid.Row="0" Orientation="Horizontal"> |
||||
<Label Margin="0,-1" Target="searchModeComboBox" Content="{x:Static properties:Resources._SearchFor}"/> |
||||
<ComboBox Width="100" Name="searchModeComboBox" Margin="1" |
||||
TextSearch.TextPath="Name" |
||||
SelectionChanged="SearchModeComboBox_SelectionChanged"> |
||||
<ComboBox.ItemTemplate> |
||||
<DataTemplate> |
||||
<StackPanel Orientation="Horizontal"> |
||||
<Image Height="16" Margin="0,0,4,0" Width="16" Source="{Binding Image}" /> |
||||
<TextBlock Text="{Binding Name}" /> |
||||
</StackPanel> |
||||
</DataTemplate> |
||||
</ComboBox.ItemTemplate> |
||||
</ComboBox> |
||||
</StackPanel> |
||||
</Grid> |
||||
</Border> |
||||
<ProgressBar x:Name="searchProgressBar" Grid.Row="1" BorderThickness="0" Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/> |
||||
<ListView Grid.Row="2" BorderThickness="0,1,0,0" HorizontalContentAlignment="Stretch" KeyDown="ListBox_KeyDown" |
||||
MouseDoubleClick="ListBox_MouseDoubleClick" Name="listBox" SelectionMode="Single" controls:SortableGridViewColumn.SortMode="Automatic" |
||||
controls:GridViewColumnAutoSize.AutoWidth="40%;40%;20%" BorderBrush="{DynamicResource {x:Static SystemColors.ControlLightBrushKey}}" |
||||
ItemsSource="{Binding Results, ElementName=self}"> |
||||
<ListView.View> |
||||
<GridView AllowsColumnReorder="False"> |
||||
<controls:SortableGridViewColumn Header="{x:Static properties:Resources.Name}" SortBy="Name"> |
||||
<controls:SortableGridViewColumn.CellTemplate> |
||||
<DataTemplate> |
||||
<StackPanel Orientation="Horizontal"> |
||||
<Image Height="16" Margin="0,0,4,0" Width="16" Source="{Binding Image}" /> |
||||
<TextBlock Text="{Binding Name}" ToolTip="{Binding ToolTip}" TextTrimming="CharacterEllipsis" /> |
||||
</StackPanel> |
||||
</DataTemplate> |
||||
</controls:SortableGridViewColumn.CellTemplate> |
||||
</controls:SortableGridViewColumn> |
||||
<controls:SortableGridViewColumn Header="{x:Static properties:Resources.Location}" SortBy="Location"> |
||||
<controls:SortableGridViewColumn.CellTemplate> |
||||
<DataTemplate> |
||||
<StackPanel Orientation="Horizontal"> |
||||
<Image Height="16" Margin="4,0,4,0" Width="16" Source="{Binding LocationImage}" /> |
||||
<TextBlock Text="{Binding Location}" ToolTip="{Binding Location}" TextTrimming="CharacterEllipsis" /> |
||||
</StackPanel> |
||||
</DataTemplate> |
||||
</controls:SortableGridViewColumn.CellTemplate> |
||||
</controls:SortableGridViewColumn> |
||||
<controls:SortableGridViewColumn Header="{x:Static properties:Resources.Assembly}" SortBy="Assembly"> |
||||
<controls:SortableGridViewColumn.CellTemplate> |
||||
<DataTemplate> |
||||
<StackPanel Orientation="Horizontal"> |
||||
<Image Height="16" Margin="4,0,4,0" Width="16" Source="{Binding AssemblyImage}" /> |
||||
<TextBlock Text="{Binding Assembly}" ToolTip="{Binding Assembly}" TextTrimming="CharacterEllipsis" /> |
||||
</StackPanel> |
||||
</DataTemplate> |
||||
</controls:SortableGridViewColumn.CellTemplate> |
||||
</controls:SortableGridViewColumn> |
||||
</GridView> |
||||
</ListView.View> |
||||
</ListView> |
||||
</Grid> |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
xmlns:controls="clr-namespace:ICSharpCode.ILSpy.Controls" |
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||
xmlns:properties="clr-namespace:ICSharpCode.ILSpy.Properties" |
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" x:Name="self" mc:Ignorable="d" |
||||
xmlns:ws="https://schemas.elecho.dev/wpfsuite" |
||||
d:DesignHeight="300" d:DesignWidth="300"> |
||||
<Grid> |
||||
<Grid.RowDefinitions> |
||||
<RowDefinition Height="Auto"/> |
||||
<RowDefinition Height="3" /> |
||||
<RowDefinition /> |
||||
</Grid.RowDefinitions> |
||||
<Border BorderBrush="{DynamicResource {x:Static SystemColors.ControlLightBrushKey}}" Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" Margin="0"> |
||||
<Grid> |
||||
<Grid.ColumnDefinitions> |
||||
<ColumnDefinition Width="*" /> |
||||
<ColumnDefinition Width="Auto" /> |
||||
</Grid.ColumnDefinitions> |
||||
<controls:SearchBox x:Name="searchBox" DockPanel.Dock="Top" Grid.Column="0" Grid.Row="0" Margin="1" |
||||
PreviewKeyDown="SearchBox_PreviewKeyDown" |
||||
Text="{Binding SearchTerm, ElementName=self}" ToolTip="{x:Static properties:Resources.SearchPane_Search}" UpdateDelay="0:0:0.1" |
||||
WatermarkColor="Gray" WatermarkText="{x:Static properties:Resources.WatermarkText}" /> |
||||
<StackPanel Grid.Column="1" Grid.Row="0" Orientation="Horizontal"> |
||||
<Label Margin="0,-1" Target="searchModeComboBox" Content="{x:Static properties:Resources._SearchFor}"/> |
||||
<ComboBox Width="100" Name="searchModeComboBox" Margin="1" |
||||
TextSearch.TextPath="Name" |
||||
SelectionChanged="SearchModeComboBox_SelectionChanged"> |
||||
<ComboBox.ItemTemplate> |
||||
<DataTemplate> |
||||
<StackPanel Orientation="Horizontal"> |
||||
<Image Height="16" Margin="0,0,4,0" Width="16" Source="{Binding Image}" /> |
||||
<TextBlock Text="{Binding Name}" /> |
||||
</StackPanel> |
||||
</DataTemplate> |
||||
</ComboBox.ItemTemplate> |
||||
</ComboBox> |
||||
</StackPanel> |
||||
</Grid> |
||||
</Border> |
||||
<ProgressBar x:Name="searchProgressBar" Grid.Row="1" BorderThickness="0" Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/> |
||||
<ListView Grid.Row="2" BorderThickness="0,1,0,0" HorizontalContentAlignment="Stretch" KeyDown="ListBox_KeyDown" |
||||
MouseDoubleClick="ListBox_MouseDoubleClick" Name="listBox" SelectionMode="Single" controls:SortableGridViewColumn.SortMode="Automatic" |
||||
controls:GridViewColumnAutoSize.AutoWidth="40%;40%;20%" BorderBrush="{DynamicResource {x:Static SystemColors.ControlLightBrushKey}}" |
||||
ItemsSource="{Binding Results, ElementName=self}"> |
||||
<ListView.View> |
||||
<GridView AllowsColumnReorder="False"> |
||||
<controls:SortableGridViewColumn Header="{x:Static properties:Resources.Name}" SortBy="Name"> |
||||
<controls:SortableGridViewColumn.CellTemplate> |
||||
<DataTemplate> |
||||
<StackPanel Orientation="Horizontal"> |
||||
<Image Height="16" Margin="0,0,4,0" Width="16" Source="{Binding Image}" /> |
||||
<TextBlock Text="{Binding Name}" ToolTip="{Binding ToolTip}" TextTrimming="CharacterEllipsis" /> |
||||
</StackPanel> |
||||
</DataTemplate> |
||||
</controls:SortableGridViewColumn.CellTemplate> |
||||
</controls:SortableGridViewColumn> |
||||
<controls:SortableGridViewColumn Header="{x:Static properties:Resources.Location}" SortBy="Location"> |
||||
<controls:SortableGridViewColumn.CellTemplate> |
||||
<DataTemplate> |
||||
<StackPanel Orientation="Horizontal"> |
||||
<Image Height="16" Margin="4,0,4,0" Width="16" Source="{Binding LocationImage}" /> |
||||
<TextBlock Text="{Binding Location}" ToolTip="{Binding Location}" TextTrimming="CharacterEllipsis" /> |
||||
</StackPanel> |
||||
</DataTemplate> |
||||
</controls:SortableGridViewColumn.CellTemplate> |
||||
</controls:SortableGridViewColumn> |
||||
<controls:SortableGridViewColumn Header="{x:Static properties:Resources.Assembly}" SortBy="Assembly"> |
||||
<controls:SortableGridViewColumn.CellTemplate> |
||||
<DataTemplate> |
||||
<StackPanel Orientation="Horizontal"> |
||||
<Image Height="16" Margin="4,0,4,0" Width="16" Source="{Binding AssemblyImage}" /> |
||||
<TextBlock Text="{Binding Assembly}" ToolTip="{Binding Assembly}" TextTrimming="CharacterEllipsis" /> |
||||
</StackPanel> |
||||
</DataTemplate> |
||||
</controls:SortableGridViewColumn.CellTemplate> |
||||
</controls:SortableGridViewColumn> |
||||
</GridView> |
||||
</ListView.View> |
||||
</ListView> |
||||
</Grid> |
||||
</UserControl> |
@ -1,34 +1,37 @@
@@ -1,34 +1,37 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
xmlns:controls="clr-namespace:ICSharpCode.ILSpy.Controls" |
||||
xmlns:themes="clr-namespace:ICSharpCode.ILSpy.Themes"> |
||||
<ResourceDictionary.MergedDictionaries> |
||||
<ResourceDictionary Source="../Controls/SearchBoxStyle.xaml" /> |
||||
<ResourceDictionary Source="../Controls/ZoomScrollViewer.xaml" /> |
||||
</ResourceDictionary.MergedDictionaries> |
||||
|
||||
<!-- SortableGridViewColumn. |
||||
Displays an up arrow or down arrow in the column header when the grid is sorted using that column. |
||||
--> |
||||
<controls:ColumnSortDirectionToVisibilityConverter x:Key="ColumnSortDirectionToVisibilityConverter"/> |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
xmlns:controls="clr-namespace:ICSharpCode.ILSpy.Controls" |
||||
xmlns:themes="clr-namespace:ICSharpCode.ILSpy.Themes" |
||||
xmlns:ws="https://schemas.elecho.dev/wpfsuite"> |
||||
|
||||
<DataTemplate x:Key="{ComponentResourceKey {x:Type controls:SortableGridViewColumn}, ColumnHeaderTemplate}"> |
||||
<StackPanel Orientation="Horizontal"> |
||||
<TextBlock HorizontalAlignment="Center" Text="{Binding}"/> |
||||
<Path x:Name="upArrow" |
||||
Visibility="{Binding Path=Column.SortDirection, ConverterParameter={x:Static controls:ColumnSortDirection.Ascending}, RelativeSource={RelativeSource AncestorType={x:Type GridViewColumnHeader}}, Converter={StaticResource ColumnSortDirectionToVisibilityConverter}}" |
||||
StrokeThickness = "1" |
||||
Fill = "Gray" |
||||
Data = "M 5,10 L 15,10 L 10,5 L 5,10"/> |
||||
<Path x:Name="downArrow" |
||||
Visibility="{Binding Path=Column.SortDirection, ConverterParameter={x:Static controls:ColumnSortDirection.Descending}, RelativeSource={RelativeSource AncestorType={x:Type GridViewColumnHeader}}, Converter={StaticResource ColumnSortDirectionToVisibilityConverter}}" |
||||
StrokeThickness = "1" |
||||
Fill = "Gray" |
||||
Data = "M 5,5 L 10,10 L 15,5 L 5,5"/> |
||||
</StackPanel> |
||||
</DataTemplate> |
||||
<ResourceDictionary.MergedDictionaries> |
||||
<ResourceDictionary Source="../Controls/SearchBoxStyle.xaml" /> |
||||
<ResourceDictionary Source="../Controls/ZoomScrollViewer.xaml" /> |
||||
</ResourceDictionary.MergedDictionaries> |
||||
|
||||
<!-- SortableGridViewColumn. |
||||
Displays an up arrow or down arrow in the column header when the grid is sorted using that column. |
||||
--> |
||||
<controls:ColumnSortDirectionToVisibilityConverter x:Key="ColumnSortDirectionToVisibilityConverter"/> |
||||
|
||||
<DataTemplate x:Key="{ComponentResourceKey {x:Type controls:SortableGridViewColumn}, ColumnHeaderTemplate}"> |
||||
<StackPanel Orientation="Horizontal"> |
||||
<TextBlock HorizontalAlignment="Center" Text="{Binding}"/> |
||||
<Path x:Name="upArrow" |
||||
Visibility="{Binding Path=Column.SortDirection, ConverterParameter={x:Static controls:ColumnSortDirection.Ascending}, RelativeSource={RelativeSource AncestorType={x:Type GridViewColumnHeader}}, Converter={StaticResource ColumnSortDirectionToVisibilityConverter}}" |
||||
StrokeThickness = "1" |
||||
Fill = "Gray" |
||||
Data = "M 5,10 L 15,10 L 10,5 L 5,10"/> |
||||
<Path x:Name="downArrow" |
||||
Visibility="{Binding Path=Column.SortDirection, ConverterParameter={x:Static controls:ColumnSortDirection.Descending}, RelativeSource={RelativeSource AncestorType={x:Type GridViewColumnHeader}}, Converter={StaticResource ColumnSortDirectionToVisibilityConverter}}" |
||||
StrokeThickness = "1" |
||||
Fill = "Gray" |
||||
Data = "M 5,5 L 10,10 L 15,5 L 5,5"/> |
||||
</StackPanel> |
||||
</DataTemplate> |
||||
|
||||
<Color x:Key="{x:Static themes:ResourceKeys.TextMarkerBackgroundColor}">GreenYellow</Color> |
||||
<Color x:Key="{x:Static themes:ResourceKeys.TextMarkerDefinitionBackgroundColor}">LightSeaGreen</Color> |
||||
<SolidColorBrush x:Key="{x:Static themes:ResourceKeys.LinkTextForegroundBrush}">Blue</SolidColorBrush> |
||||
|
||||
<Color x:Key="{x:Static themes:ResourceKeys.TextMarkerBackgroundColor}">GreenYellow</Color> |
||||
<Color x:Key="{x:Static themes:ResourceKeys.TextMarkerDefinitionBackgroundColor}">LightSeaGreen</Color> |
||||
<SolidColorBrush x:Key="{x:Static themes:ResourceKeys.LinkTextForegroundBrush}">Blue</SolidColorBrush> |
||||
</ResourceDictionary> |
Loading…
Reference in new issue