This repository has been archived by the owner on Sep 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.Designer.cs
139 lines (132 loc) · 5.77 KB
/
Home.Designer.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
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
namespace SpellChecker
{
partial class Home
{
/// <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.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.LoadFileButton = new System.Windows.Forms.Button();
this.userInputTextBox = new System.Windows.Forms.RichTextBox();
this.label2 = new System.Windows.Forms.Label();
this.correctButton = new System.Windows.Forms.Button();
this.outputTextBox = new System.Windows.Forms.RichTextBox();
this.totalItemsLabel = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// LoadFileButton
//
this.LoadFileButton.Location = new System.Drawing.Point(12, 12);
this.LoadFileButton.Name = "LoadFileButton";
this.LoadFileButton.Size = new System.Drawing.Size(165, 31);
this.LoadFileButton.TabIndex = 0;
this.LoadFileButton.Text = "Загрузить файл";
this.LoadFileButton.UseVisualStyleBackColor = true;
this.LoadFileButton.Click += new System.EventHandler(this.LoadFileBtn_Click);
//
// userInputTextBox
//
this.userInputTextBox.Location = new System.Drawing.Point(12, 66);
this.userInputTextBox.Name = "userInputTextBox";
this.userInputTextBox.Size = new System.Drawing.Size(412, 93);
this.userInputTextBox.TabIndex = 3;
this.userInputTextBox.Text = "";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 50);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(92, 13);
this.label2.TabIndex = 4;
this.label2.Text = "Исходный текст:";
//
// correctButton
//
this.correctButton.Location = new System.Drawing.Point(12, 165);
this.correctButton.Name = "correctButton";
this.correctButton.Size = new System.Drawing.Size(119, 23);
this.correctButton.TabIndex = 5;
this.correctButton.Text = "Корректировать";
this.correctButton.UseVisualStyleBackColor = true;
this.correctButton.Click += new System.EventHandler(this.correctButton_Click);
//
// outputTextBox
//
this.outputTextBox.Location = new System.Drawing.Point(12, 218);
this.outputTextBox.Name = "outputTextBox";
this.outputTextBox.Size = new System.Drawing.Size(412, 98);
this.outputTextBox.TabIndex = 6;
this.outputTextBox.Text = "";
//
// totalItemsLabel
//
this.totalItemsLabel.AutoSize = true;
this.totalItemsLabel.Location = new System.Drawing.Point(183, 21);
this.totalItemsLabel.Name = "totalItemsLabel";
this.totalItemsLabel.Size = new System.Drawing.Size(121, 13);
this.totalItemsLabel.TabIndex = 7;
this.totalItemsLabel.Text = "Всего слов в словаре:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(9, 202);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(117, 13);
this.label3.TabIndex = 8;
this.label3.Text = "Исправленный текст:";
//
// Home
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(438, 328);
this.Controls.Add(this.label3);
this.Controls.Add(this.totalItemsLabel);
this.Controls.Add(this.outputTextBox);
this.Controls.Add(this.correctButton);
this.Controls.Add(this.label2);
this.Controls.Add(this.userInputTextBox);
this.Controls.Add(this.LoadFileButton);
this.Name = "Home";
this.Text = "Home";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Button LoadFileButton;
private System.Windows.Forms.RichTextBox userInputTextBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button correctButton;
private System.Windows.Forms.RichTextBox outputTextBox;
private System.Windows.Forms.Label totalItemsLabel;
private System.Windows.Forms.Label label3;
}
}