-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathForm1.cs
111 lines (100 loc) · 3.52 KB
/
Form1.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
using ICSharpCode.TextEditor;
using ICSharpCode.TextEditor.Document;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ICSharpCodeTextEditor
{
public partial class Form1 : Form
{
private TextEditorControl textEditor = null;
public Form1()
{
InitializeComponent();
textEditor = new TextEditorControl();
textEditor.Dock = DockStyle.Fill;
this.pContainer.Controls.Add(textEditor);
textEditor.TextChanged += TextEditor_TextChanged;
}
private void TextEditor_TextChanged(object sender, EventArgs e)
{
//更新,以便进行代码折叠
textEditor.Document.FoldingManager.UpdateFoldings(null, null);
}
private void btnFormatCSharp_Click(object sender, EventArgs e)
{
textEditor.Text =
JackWangCUMT.WinForm.CSharpFormatHelper.FormatCSharpCode(textEditor.Text);
}
private void Form1_Load(object sender, EventArgs e)
{
string sampleCode = @"using ICSharpCode.TextEditor;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ICSharpCodeTextEditor
{
public partial class Form1 : Form
{
private TextEditorControl textEditor = null;
public Form1()
{
InitializeComponent();
textEditor = new TextEditorControl();
textEditor.Dock = DockStyle.Fill;
this.pContainer.Controls.Add(textEditor);
textEditor.TextChanged += TextEditor_TextChanged;
}
private void TextEditor_TextChanged(object sender, EventArgs e)
{
//更新,以便进行代码折叠
textEditor.Document.FoldingManager.UpdateFoldings(null, null);
}
private void btnFormatCSharp_Click(object sender, EventArgs e)
{
textEditor.Text =
JackWangCUMT.WinForm.CSharpFormatHelper.FormatCSharpCode(textEditor.Text);
}
private void Form1_Load(object sender, EventArgs e)
{
if(textEditor!=null)
{
textEditor.SetHighlighting(""C#"");
textEditor.Encoding = System.Text.Encoding.UTF8;
textEditor.Document.FoldingManager.FoldingStrategy = new JackWangCUMT.WinForm.MingFolding();
}
}
}
}
";
//textEditor.SetHighlighting("C#");
//textEditor.Document.HighlightingStrategy = HighlightingStrategyFactory.CreateHighlightingStrategy("C#");
textEditor.Encoding = System.Text.Encoding.UTF8;
textEditor.Font = new Font("Hack",12);
textEditor.Document.FoldingManager.FoldingStrategy = new JackWangCUMT.WinForm.MingFolding();
textEditor.Text = sampleCode;
//自定义代码高亮
string path = Application.StartupPath+ "\\HighLighting";
FileSyntaxModeProvider fsmp;
if (Directory.Exists(path))
{
fsmp = new FileSyntaxModeProvider(path);
HighlightingManager.Manager.AddSyntaxModeFileProvider(fsmp);
textEditor.SetHighlighting("JackC#");
}
}
}
}