|
|
@ -1,7 +1,7 @@ |
|
|
|
<UserControl x:Class="ICSharpCode.ILSpy.TextView.DecompilerTextView" x:ClassModifier="public" x:Name="self" |
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
xmlns:ae="clr-namespace:ICSharpCode.AvalonEdit;assembly=ICSharpCode.AvalonEdit"> |
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
xmlns:ae="clr-namespace:ICSharpCode.AvalonEdit;assembly=ICSharpCode.AvalonEdit"> |
|
|
|
<UserControl.Resources> |
|
|
|
<BooleanToVisibilityConverter x:Key="boolToVisibility" /> |
|
|
|
</UserControl.Resources> |
|
|
@ -9,8 +9,13 @@ |
|
|
|
<Border BorderThickness="1,1,0,1" BorderBrush="#FF828790"> |
|
|
|
<Grid> |
|
|
|
<ae:TextEditor Name="textEditor" FontFamily="Consolas" FontSize="10pt" IsReadOnly="True" |
|
|
|
Background="{DynamicResource {x:Static SystemColors.InfoBrushKey}}" |
|
|
|
Foreground="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}" /> |
|
|
|
Background="{DynamicResource {x:Static SystemColors.InfoBrushKey}}" |
|
|
|
Foreground="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}"> |
|
|
|
<ae:TextEditor.Resources> |
|
|
|
<!-- prevent App-wide button style from applying to the buttons in the search box --> |
|
|
|
<Style TargetType="{x:Type Button}" /> |
|
|
|
</ae:TextEditor.Resources> |
|
|
|
</ae:TextEditor> |
|
|
|
<Border Name="waitAdorner" Background="#C0FFFFFF" Visibility="Collapsed"> |
|
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center"> |
|
|
|
<TextBlock FontSize="14pt">Decompiling...</TextBlock> |
|
|
|