|
|
@ -3,6 +3,7 @@ |
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
xmlns:core="http://icsharpcode.net/sharpdevelop/core" |
|
|
|
xmlns:core="http://icsharpcode.net/sharpdevelop/core" |
|
|
|
xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui" |
|
|
|
xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui" |
|
|
|
|
|
|
|
xmlns:sd="clr-namespace:ICSharpCode.SharpDevelop" |
|
|
|
xmlns:widgets="clr-namespace:ICSharpCode.SharpDevelop.Widgets;assembly=ICSharpCode.SharpDevelop.Widgets"> |
|
|
|
xmlns:widgets="clr-namespace:ICSharpCode.SharpDevelop.Widgets;assembly=ICSharpCode.SharpDevelop.Widgets"> |
|
|
|
<Grid> |
|
|
|
<Grid> |
|
|
|
<Grid.RowDefinitions> |
|
|
|
<Grid.RowDefinitions> |
|
|
@ -26,7 +27,7 @@ |
|
|
|
Header="{core:Localize Dialog.Options.IDEOptions.CodeCompletion.DetailSettings}" |
|
|
|
Header="{core:Localize Dialog.Options.IDEOptions.CodeCompletion.DetailSettings}" |
|
|
|
IsEnabled="{Binding EnableCodeCompletion}"> |
|
|
|
IsEnabled="{Binding EnableCodeCompletion}"> |
|
|
|
|
|
|
|
|
|
|
|
<Grid > |
|
|
|
<Grid> |
|
|
|
<Grid.RowDefinitions> |
|
|
|
<Grid.RowDefinitions> |
|
|
|
<RowDefinition Height="25"></RowDefinition> |
|
|
|
<RowDefinition Height="25"></RowDefinition> |
|
|
|
<RowDefinition Height="25"></RowDefinition> |
|
|
|
<RowDefinition Height="25"></RowDefinition> |
|
|
@ -38,6 +39,7 @@ |
|
|
|
<RowDefinition Height="25"></RowDefinition> |
|
|
|
<RowDefinition Height="25"></RowDefinition> |
|
|
|
|
|
|
|
|
|
|
|
<RowDefinition Height="Auto"></RowDefinition> |
|
|
|
<RowDefinition Height="Auto"></RowDefinition> |
|
|
|
|
|
|
|
<RowDefinition Height="Auto"></RowDefinition> |
|
|
|
</Grid.RowDefinitions> |
|
|
|
</Grid.RowDefinitions> |
|
|
|
|
|
|
|
|
|
|
|
<CheckBox Content="{core:Localize Dialog.Options.IDEOptions.CodeCompletion.UseDataUsageCache}" |
|
|
|
<CheckBox Content="{core:Localize Dialog.Options.IDEOptions.CodeCompletion.UseDataUsageCache}" |
|
|
@ -75,7 +77,7 @@ |
|
|
|
</CheckBox> |
|
|
|
</CheckBox> |
|
|
|
|
|
|
|
|
|
|
|
<TextBlock Grid.Row="4" Margin="0,3,0,13" |
|
|
|
<TextBlock Grid.Row="4" Margin="0,3,0,13" |
|
|
|
Text="{Binding WrapText}" |
|
|
|
Text="{core:Localize Dialog.Options.IDEOptions.CodeCompletion.LanguageDependend}" |
|
|
|
TextWrapping="Wrap"> |
|
|
|
TextWrapping="Wrap"> |
|
|
|
</TextBlock> |
|
|
|
</TextBlock> |
|
|
|
|
|
|
|
|
|
|
@ -97,6 +99,11 @@ |
|
|
|
IsEnabled="{Binding UseInsight}"> |
|
|
|
IsEnabled="{Binding UseInsight}"> |
|
|
|
</CheckBox> |
|
|
|
</CheckBox> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<StackPanel Grid.Row="9" Orientation="Horizontal" Margin="0,10"> |
|
|
|
|
|
|
|
<TextBlock Text="{core:Localize Dialog.Options.IDEOptions.CodeCompletion.TooltipLinkTarget}" Margin="0,2,2,0" /> |
|
|
|
|
|
|
|
<ComboBox sd:EnumBinding.EnumType="{x:Type sd:TooltipLinkTarget}" |
|
|
|
|
|
|
|
SelectedValue="{core:OptionBinding sd:CodeCompletionOptions.TooltipLinkTarget}" /> |
|
|
|
|
|
|
|
</StackPanel> |
|
|
|
</Grid> |
|
|
|
</Grid> |
|
|
|
</GroupBox> |
|
|
|
</GroupBox> |
|
|
|
</Grid> |
|
|
|
</Grid> |
|
|
|