-
Notifications
You must be signed in to change notification settings - Fork 532
/
RichTextBoxEx.cs
56 lines (50 loc) · 1.38 KB
/
RichTextBoxEx.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
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
namespace 天若OCR文字识别
{
// Token: 0x02000034 RID: 52
public class RichTextBoxEx : HelpRepaint.AdvRichTextBox
{
// Token: 0x060002B7 RID: 695 RVA: 0x00002FA2 File Offset: 0x000011A2
protected override void Dispose(bool disposing)
{
if (disposing && this.components != null)
{
this.components.Dispose();
}
base.Dispose(disposing);
}
// Token: 0x060002B8 RID: 696 RVA: 0x00002FC1 File Offset: 0x000011C1
private void InitializeComponent()
{
this.components = new Container();
}
// Token: 0x060002B9 RID: 697
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern IntPtr LoadLibrary(string path);
// Token: 0x17000040 RID: 64
// (get) Token: 0x060002BB RID: 699 RVA: 0x00002FD6 File Offset: 0x000011D6
// (set) Token: 0x060002BC RID: 700 RVA: 0x00002FDE File Offset: 0x000011DE
[Bindable(true)]
[RefreshProperties(RefreshProperties.All)]
[SettingsBindable(true)]
[DefaultValue(false)]
[Category("Appearance")]
public string Rtf2
{
get
{
return base.Rtf;
}
set
{
base.Rtf = value;
}
}
// Token: 0x04000235 RID: 565
private IContainer components;
// Token: 0x04000236 RID: 566
private static IntPtr moduleHandle;
}
}