-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormEditor.Designer.cs
157 lines (150 loc) · 8.72 KB
/
FormEditor.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
namespace TrayTextPaste
{
partial class FormEditor
{
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Код, автоматически созданный конструктором форм Windows
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
private void InitializeComponent()
{
this.textBox1 = new System.Windows.Forms.TextBox();
this.save = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.insertTab = new System.Windows.Forms.Button();
this.changeTextIndent = new System.Windows.Forms.Button();
this.about = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// textBox1
//
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox1.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.textBox1.Location = new System.Drawing.Point(12, 12);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBox1.Size = new System.Drawing.Size(781, 406);
this.textBox1.TabIndex = 0;
this.textBox1.WordWrap = false;
//
// save
//
this.save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.save.Location = new System.Drawing.Point(680, 473);
this.save.Name = "save";
this.save.Size = new System.Drawing.Size(113, 30);
this.save.TabIndex = 1;
this.save.Text = "Сохранить";
this.save.UseVisualStyleBackColor = true;
this.save.Click += new System.EventHandler(this.save_Click);
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label1.Location = new System.Drawing.Point(12, 470);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(473, 33);
this.label1.TabIndex = 2;
this.label1.Text = "** Для создания многоуровневого меню добавьте минимум два пробела в начало строки" +
" дочернего элемента (поддерживается только один уровень вложенности).";
//
// label2
//
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label2.Location = new System.Drawing.Point(12, 433);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(473, 33);
this.label2.TabIndex = 3;
this.label2.Text = "* Поддерживается команда перехода к следующему полю (аналог нажатия клавиши Tab)." +
" Для этого поместите слово {tab} в том месте строки, где требуется сделать перех" +
"од.";
//
// insertTab
//
this.insertTab.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.insertTab.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.insertTab.Location = new System.Drawing.Point(491, 435);
this.insertTab.Name = "insertTab";
this.insertTab.Size = new System.Drawing.Size(93, 24);
this.insertTab.TabIndex = 4;
this.insertTab.Text = "Вставить {tab}";
this.insertTab.UseVisualStyleBackColor = true;
this.insertTab.Click += new System.EventHandler(this.insertTab_Click);
//
// changeTextIndent
//
this.changeTextIndent.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.changeTextIndent.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.changeTextIndent.Location = new System.Drawing.Point(491, 467);
this.changeTextIndent.Name = "changeTextIndent";
this.changeTextIndent.Size = new System.Drawing.Size(93, 36);
this.changeTextIndent.TabIndex = 5;
this.changeTextIndent.Text = "Смена уровня выделенного";
this.changeTextIndent.UseVisualStyleBackColor = true;
this.changeTextIndent.Click += new System.EventHandler(this.changeTextIndent_Click);
//
// about
//
this.about.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.about.Location = new System.Drawing.Point(680, 435);
this.about.Name = "about";
this.about.Size = new System.Drawing.Size(113, 30);
this.about.TabIndex = 6;
this.about.Text = "О программе...";
this.about.UseVisualStyleBackColor = true;
this.about.Click += new System.EventHandler(this.about_Click);
//
// FormEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(805, 515);
this.Controls.Add(this.about);
this.Controls.Add(this.changeTextIndent);
this.Controls.Add(this.insertTab);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.save);
this.Controls.Add(this.textBox1);
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.MinimumSize = new System.Drawing.Size(740, 247);
this.Name = "FormEditor";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Редактор строк";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button save;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button insertTab;
private System.Windows.Forms.Button changeTextIndent;
private System.Windows.Forms.Button about;
}
}