-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
163 lines (156 loc) · 7.52 KB
/
Form1.Designer.cs
File metadata and controls
163 lines (156 loc) · 7.52 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
namespace txspell_autocorrect
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.textControl1 = new TXTextControl.TextControl();
this.buttonBar1 = new TXTextControl.ButtonBar();
this.statusBar1 = new TXTextControl.StatusBar();
this.rulerBar1 = new TXTextControl.RulerBar();
this.rulerBar2 = new TXTextControl.RulerBar();
this.txSpellChecker1 = new TXTextControl.Proofing.TXSpellChecker();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.autoCorrectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.correctTWoINitialCApitalsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// textControl1
//
this.textControl1.ButtonBar = this.buttonBar1;
this.textControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.textControl1.Font = new System.Drawing.Font("Arial", 10F);
this.textControl1.IsSpellCheckingEnabled = true;
this.textControl1.Location = new System.Drawing.Point(25, 77);
this.textControl1.Name = "textControl1";
this.textControl1.RulerBar = this.rulerBar2;
this.textControl1.Size = new System.Drawing.Size(964, 461);
this.textControl1.SpellChecker = this.txSpellChecker1;
this.textControl1.StatusBar = this.statusBar1;
this.textControl1.TabIndex = 0;
this.textControl1.VerticalRulerBar = this.rulerBar1;
this.textControl1.Changed += new System.EventHandler(this.textControl1_Changed);
//
// buttonBar1
//
this.buttonBar1.BackColor = System.Drawing.SystemColors.Control;
this.buttonBar1.Dock = System.Windows.Forms.DockStyle.Top;
this.buttonBar1.Location = new System.Drawing.Point(0, 24);
this.buttonBar1.Name = "buttonBar1";
this.buttonBar1.Size = new System.Drawing.Size(989, 28);
this.buttonBar1.TabIndex = 1;
this.buttonBar1.Text = "buttonBar1";
//
// statusBar1
//
this.statusBar1.BackColor = System.Drawing.SystemColors.Control;
this.statusBar1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.statusBar1.Location = new System.Drawing.Point(0, 538);
this.statusBar1.Name = "statusBar1";
this.statusBar1.Size = new System.Drawing.Size(989, 22);
this.statusBar1.TabIndex = 2;
//
// rulerBar1
//
this.rulerBar1.Alignment = TXTextControl.RulerBarAlignment.Left;
this.rulerBar1.Dock = System.Windows.Forms.DockStyle.Left;
this.rulerBar1.Location = new System.Drawing.Point(0, 77);
this.rulerBar1.Name = "rulerBar1";
this.rulerBar1.Size = new System.Drawing.Size(25, 461);
this.rulerBar1.TabIndex = 3;
this.rulerBar1.Text = "rulerBar1";
//
// rulerBar2
//
this.rulerBar2.Dock = System.Windows.Forms.DockStyle.Top;
this.rulerBar2.Location = new System.Drawing.Point(0, 52);
this.rulerBar2.Name = "rulerBar2";
this.rulerBar2.Size = new System.Drawing.Size(989, 25);
this.rulerBar2.TabIndex = 4;
this.rulerBar2.Text = "rulerBar2";
//
// txSpellChecker1
//
this.txSpellChecker1.Language = "en_US.dic";
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.autoCorrectToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(989, 24);
this.menuStrip1.TabIndex = 5;
this.menuStrip1.Text = "menuStrip1";
//
// autoCorrectToolStripMenuItem
//
this.autoCorrectToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.correctTWoINitialCApitalsToolStripMenuItem});
this.autoCorrectToolStripMenuItem.Name = "autoCorrectToolStripMenuItem";
this.autoCorrectToolStripMenuItem.Size = new System.Drawing.Size(84, 20);
this.autoCorrectToolStripMenuItem.Text = "AutoCorrect";
//
// correctTWoINitialCApitalsToolStripMenuItem
//
this.correctTWoINitialCApitalsToolStripMenuItem.Checked = true;
this.correctTWoINitialCApitalsToolStripMenuItem.CheckOnClick = true;
this.correctTWoINitialCApitalsToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.correctTWoINitialCApitalsToolStripMenuItem.Name = "correctTWoINitialCApitalsToolStripMenuItem";
this.correctTWoINitialCApitalsToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
this.correctTWoINitialCApitalsToolStripMenuItem.Text = "Correct TWo INitial CApitals";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(989, 560);
this.Controls.Add(this.textControl1);
this.Controls.Add(this.rulerBar1);
this.Controls.Add(this.rulerBar2);
this.Controls.Add(this.buttonBar1);
this.Controls.Add(this.statusBar1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "TX Spell Sample: Correct TWo INitial CApitals";
this.Load += new System.EventHandler(this.Form1_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TXTextControl.TextControl textControl1;
private TXTextControl.ButtonBar buttonBar1;
private TXTextControl.RulerBar rulerBar2;
private TXTextControl.StatusBar statusBar1;
private TXTextControl.RulerBar rulerBar1;
private TXTextControl.Proofing.TXSpellChecker txSpellChecker1;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem autoCorrectToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem correctTWoINitialCApitalsToolStripMenuItem;
}
}