4 changed files with 8586 additions and 8479 deletions
File diff suppressed because it is too large
Load Diff
@ -1,33 +1,41 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<gui:OptionPanel |
<gui:OptionPanel |
||||||
x:Class="ICSharpCode.AvalonEdit.AddIn.Options.GeneralEditorOptions" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:winforms="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration" xmlns:core="http://icsharpcode.net/sharpdevelop/core" xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop" xmlns:local="clr-namespace:ICSharpCode.AvalonEdit.AddIn.Options" xmlns:widgets="http://icsharpcode.net/sharpdevelop/widgets"> |
x:Class="ICSharpCode.AvalonEdit.AddIn.Options.GeneralEditorOptions" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:winforms="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration" xmlns:core="http://icsharpcode.net/sharpdevelop/core" xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop" xmlns:local="clr-namespace:ICSharpCode.AvalonEdit.AddIn.Options" xmlns:widgets="http://icsharpcode.net/sharpdevelop/widgets"> |
||||||
<StackPanel> |
<StackPanel> |
||||||
<GroupBox |
<GroupBox |
||||||
Header="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.FontGroupBox}"> |
Header="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.FontGroupBox}"> |
||||||
<gui:FontSelector x:Name="fontSelectionPanel" /> |
|
||||||
</GroupBox> |
|
||||||
<GroupBox |
|
||||||
Header="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.GeneralOptionsGroupBox}"> |
|
||||||
<widgets:StackPanelWithSpacing SpaceBetweenItems="5"> |
<widgets:StackPanelWithSpacing SpaceBetweenItems="5"> |
||||||
|
<gui:FontSelector x:Name="fontSelectionPanel" /> |
||||||
<CheckBox |
<CheckBox |
||||||
IsChecked="{core:OptionBinding local:CodeEditorOptions.WordWrap}" |
IsChecked="{core:OptionBinding local:CodeEditorOptions.EnableTextAntialiasing}" |
||||||
Content="{core:Localize Dialog.Options.IDEOptions.OutputPanel.WordWrap}" /> |
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.EnableTextAntialiasing}" /> |
||||||
<CheckBox |
|
||||||
IsChecked="{core:OptionBinding local:CodeEditorOptions.EnableFolding}" |
|
||||||
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.FoldingCheckBox}" /> |
|
||||||
<CheckBox |
<CheckBox |
||||||
IsChecked="{core:OptionBinding local:CodeEditorOptions.EnableChangeMarkerMargin}" |
IsChecked="{core:OptionBinding local:CodeEditorOptions.EnableTextHinting}" |
||||||
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.ChangeMarkerMarginCheckBox}" /> |
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.EnableTextHinting}" /> |
||||||
<CheckBox |
|
||||||
IsChecked="{core:OptionBinding local:CodeEditorOptions.EnableQuickClassBrowser}" |
|
||||||
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.ShowQuickClassBrowserCheckBox}" /> |
|
||||||
<CheckBox |
|
||||||
IsChecked="{core:OptionBinding local:CodeEditorOptions.ShowLineNumbers}" |
|
||||||
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.Markers.LineNumberCheckBox}" /> |
|
||||||
<CheckBox |
|
||||||
IsChecked="{core:OptionBinding local:CodeEditorOptions.ShowHiddenDefinitions}" |
|
||||||
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.Markers.ShowHiddenDefinitionsCheckBox}" /> |
|
||||||
</widgets:StackPanelWithSpacing> |
</widgets:StackPanelWithSpacing> |
||||||
</GroupBox> |
</GroupBox> |
||||||
</StackPanel> |
<GroupBox |
||||||
|
Header="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.GeneralOptionsGroupBox}"> |
||||||
|
<widgets:StackPanelWithSpacing SpaceBetweenItems="5"> |
||||||
|
<CheckBox |
||||||
|
IsChecked="{core:OptionBinding local:CodeEditorOptions.WordWrap}" |
||||||
|
Content="{core:Localize Dialog.Options.IDEOptions.OutputPanel.WordWrap}" /> |
||||||
|
<CheckBox |
||||||
|
IsChecked="{core:OptionBinding local:CodeEditorOptions.EnableFolding}" |
||||||
|
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.FoldingCheckBox}" /> |
||||||
|
<CheckBox |
||||||
|
IsChecked="{core:OptionBinding local:CodeEditorOptions.EnableChangeMarkerMargin}" |
||||||
|
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.ChangeMarkerMarginCheckBox}" /> |
||||||
|
<CheckBox |
||||||
|
IsChecked="{core:OptionBinding local:CodeEditorOptions.EnableQuickClassBrowser}" |
||||||
|
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.General.ShowQuickClassBrowserCheckBox}" /> |
||||||
|
<CheckBox |
||||||
|
IsChecked="{core:OptionBinding local:CodeEditorOptions.ShowLineNumbers}" |
||||||
|
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.Markers.LineNumberCheckBox}" /> |
||||||
|
<CheckBox |
||||||
|
IsChecked="{core:OptionBinding local:CodeEditorOptions.ShowHiddenDefinitions}" |
||||||
|
Content="{core:Localize Dialog.Options.IDEOptions.TextEditor.Markers.ShowHiddenDefinitionsCheckBox}" /> |
||||||
|
</widgets:StackPanelWithSpacing> |
||||||
|
</GroupBox> |
||||||
|
</StackPanel> |
||||||
</gui:OptionPanel> |
</gui:OptionPanel> |
Loading…
Reference in new issue