12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- using NTERA.Console;
- namespace NTERA
- {
- partial class formMain
- {
- /// <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.consoleControl1 = new NTERA.Console.ConsoleControl();
- this.txtInput = new System.Windows.Forms.TextBox();
- this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
- this.SuspendLayout();
- //
- // consoleControl1
- //
- this.consoleControl1.BackColor = System.Drawing.Color.Black;
- this.consoleControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.consoleControl1.Location = new System.Drawing.Point(0, 0);
- this.consoleControl1.Name = "consoleControl1";
- this.consoleControl1.Size = new System.Drawing.Size(1184, 417);
- this.consoleControl1.TabIndex = 0;
- //
- // txtInput
- //
- this.txtInput.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.txtInput.Location = new System.Drawing.Point(0, 417);
- this.txtInput.Name = "txtInput";
- this.txtInput.Size = new System.Drawing.Size(1184, 20);
- this.txtInput.TabIndex = 1;
- this.txtInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtInput_KeyDown);
- //
- // formMain
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1184, 437);
- this.Controls.Add(this.consoleControl1);
- this.Controls.Add(this.txtInput);
- this.MaximumSize = new System.Drawing.Size(1200, 99999);
- this.MinimumSize = new System.Drawing.Size(1200, 39);
- this.Name = "formMain";
- this.Text = "NTERA";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private ConsoleControl consoleControl1;
- private System.Windows.Forms.TextBox txtInput;
- private System.ComponentModel.BackgroundWorker backgroundWorker1;
- }
- }
|