-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmMain.Designer.cs
112 lines (104 loc) · 5.28 KB
/
frmMain.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
using Neo_RTB = MeFastTextBox.NeoRTB;
//using Neo_RTB = sSystem.Windows.Forms.RichTextBox;
namespace MeFastTextBox
{
partial class MainTestForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainTestForm));
this.button1 = new System.Windows.Forms.Button();
this.listBox1 = new System.Windows.Forms.TreeView();
this.status = new System.Windows.Forms.Label();
this.FatBox = new MeFastTextBox.NeoRTB();
this.SuspendLayout();
//
// button1
//
this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button1.Location = new System.Drawing.Point(587, 409);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(156, 54);
this.button1.TabIndex = 2;
this.button1.TabStop = false;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// listBox1
//
this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.listBox1.Location = new System.Drawing.Point(587, 15);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(154, 388);
this.listBox1.TabIndex = 3;
this.listBox1.DoubleClick += new System.EventHandler(this.listBox1_DoubleClick);
//
// status
//
this.status.AutoSize = true;
this.status.Location = new System.Drawing.Point(-2, 466);
this.status.Name = "status";
this.status.Size = new System.Drawing.Size(0, 13);
this.status.TabIndex = 4;
//
// FatBox
//
this.FatBox.AcceptsTab = true;
this.FatBox.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.FatBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.FatBox.GloBlocks = ((System.Collections.Generic.List<string>)(resources.GetObject("FatBox.GloBlocks")));
this.FatBox.Location = new System.Drawing.Point(1, 12);
this.FatBox.Name = "FatBox";
this.FatBox.Size = new System.Drawing.Size(580, 451);
this.FatBox.TabIndex = 0;
this.FatBox.Text = "class Astra:\n\ta=6\n\tdef D():";
this.FatBox.TextChanged += new System.EventHandler(this.richTextBox1_TextChanged);
this.FatBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FatBox_KeyDown);
this.FatBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.FatBox_KeyPress);
//
// MainTestForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(759, 492);
this.Controls.Add(this.status);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.button1);
this.Controls.Add(this.FatBox);
this.Name = "MainTestForm";
this.Load += new System.EventHandler(this.MainTestForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Neo_RTB FatBox;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TreeView listBox1;
private System.Windows.Forms.Label status;
}
}