📄 markerstexteditorpanel.cs
字号:
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
// <version value="$version"/>
// </file>
using System;
using System.IO;
using System.Drawing;
using System.Windows.Forms;
using ICSharpCode.TextEditor.Document;
using ICSharpCode.SharpDevelop.Internal.ExternalTool;
using ICSharpCode.Core.Properties;
using ICSharpCode.Core.Services;
using ICSharpCode.Core.AddIns.Codons;
using ICSharpCode.SharpDevelop.Gui.Dialogs;
using ICSharpCode.SharpDevelop.Gui;
using ICSharpCode.TextEditor;
using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor;
namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels
{
/// <summary>
/// Summary description for Form9.
/// </summary>
public class MarkersTextEditorPanel : AbstractOptionPanel
{
static FileUtilityService fileUtilityService = (FileUtilityService)ServiceManager.Services.GetService(typeof(FileUtilityService));
public override void LoadPanelContents()
{
SetupFromXml(Path.Combine(PropertyService.DataDirectory,
@"resources\panels\MarkersTextEditorPanel.xfrm"));
((CheckBox)ControlDictionary["showLineNumberCheckBox"]).Checked = ((IProperties)CustomizationObject).GetProperty("ShowLineNumbers", true);
((CheckBox)ControlDictionary["showInvalidLinesCheckBox"]).Checked = ((IProperties)CustomizationObject).GetProperty("ShowInvalidLines", true);
((CheckBox)ControlDictionary["showBracketHighlighterCheckBox"]).Checked = ((IProperties)CustomizationObject).GetProperty("ShowBracketHighlight", true);
((CheckBox)ControlDictionary["showErrorsCheckBox"]).Checked = ((IProperties)CustomizationObject).GetProperty("ShowErrors", true);
((CheckBox)ControlDictionary["showHRulerCheckBox"]).Checked = ((IProperties)CustomizationObject).GetProperty("ShowHRuler", false);
((CheckBox)ControlDictionary["showEOLMarkersCheckBox"]).Checked = ((IProperties)CustomizationObject).GetProperty("ShowEOLMarkers", false);
((CheckBox)ControlDictionary["showVRulerCheckBox"]).Checked = ((IProperties)CustomizationObject).GetProperty("ShowVRuler", false);
((CheckBox)ControlDictionary["showTabCharsCheckBox"]).Checked = ((IProperties)CustomizationObject).GetProperty("ShowTabs", false);
((CheckBox)ControlDictionary["showSpaceCharsCheckBox"]).Checked = ((IProperties)CustomizationObject).GetProperty("ShowSpaces", false);
ControlDictionary["vRulerRowTextBox"].Text = ((IProperties)CustomizationObject).GetProperty("VRulerRow", 80).ToString();
ResourceService resourceService = (ResourceService)ServiceManager.Services.GetService(typeof(IResourceService));
((ComboBox)ControlDictionary["lineMarkerStyleComboBox"]).Items.Add(resourceService.GetString("Dialog.Options.IDEOptions.TextEditor.Markers.LineViewerStyle.None"));
((ComboBox)ControlDictionary["lineMarkerStyleComboBox"]).Items.Add(resourceService.GetString("Dialog.Options.IDEOptions.TextEditor.Markers.LineViewerStyle.FullRow"));
((ComboBox)ControlDictionary["lineMarkerStyleComboBox"]).SelectedIndex = (int)(LineViewerStyle)((IProperties)CustomizationObject).GetProperty("LineViewerStyle", LineViewerStyle.None);
}
public override bool StorePanelContents()
{
((IProperties)CustomizationObject).SetProperty("ShowInvalidLines", ((CheckBox)ControlDictionary["showInvalidLinesCheckBox"]).Checked);
((IProperties)CustomizationObject).SetProperty("ShowLineNumbers", ((CheckBox)ControlDictionary["showLineNumberCheckBox"]).Checked);
((IProperties)CustomizationObject).SetProperty("ShowBracketHighlight", ((CheckBox)ControlDictionary["showBracketHighlighterCheckBox"]).Checked);
((IProperties)CustomizationObject).SetProperty("ShowErrors", ((CheckBox)ControlDictionary["showErrorsCheckBox"]).Checked);
((IProperties)CustomizationObject).SetProperty("ShowHRuler", ((CheckBox)ControlDictionary["showHRulerCheckBox"]).Checked);
((IProperties)CustomizationObject).SetProperty("ShowEOLMarkers", ((CheckBox)ControlDictionary["showEOLMarkersCheckBox"]).Checked);
((IProperties)CustomizationObject).SetProperty("ShowVRuler", ((CheckBox)ControlDictionary["showVRulerCheckBox"]).Checked);
((IProperties)CustomizationObject).SetProperty("ShowTabs", ((CheckBox)ControlDictionary["showTabCharsCheckBox"]).Checked);
((IProperties)CustomizationObject).SetProperty("ShowSpaces", ((CheckBox)ControlDictionary["showSpaceCharsCheckBox"]).Checked);
try {
((IProperties)CustomizationObject).SetProperty("VRulerRow", Int32.Parse(ControlDictionary["vRulerRowTextBox"].Text));
} catch (Exception) {
}
((IProperties)CustomizationObject).SetProperty("LineViewerStyle", (LineViewerStyle)((ComboBox)ControlDictionary["lineMarkerStyleComboBox"]).SelectedIndex);
IWorkbenchWindow window = WorkbenchSingleton.Workbench.ActiveWorkbenchWindow;
if (window != null && (window.ViewContent is ITextEditorControlProvider)) {
TextEditorControl textarea = ((ITextEditorControlProvider)window.ViewContent).TextEditorControl;
textarea.OptionsChanged();
}
return true;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -