formMain.Designer.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using NTERA.Console;
  2. namespace NTERA
  3. {
  4. partial class formMain
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.consoleControl1 = new NTERA.Console.ConsoleControl();
  30. this.txtInput = new System.Windows.Forms.TextBox();
  31. this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  32. this.SuspendLayout();
  33. //
  34. // consoleControl1
  35. //
  36. this.consoleControl1.BackColor = System.Drawing.Color.Black;
  37. this.consoleControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  38. this.consoleControl1.Location = new System.Drawing.Point(0, 0);
  39. this.consoleControl1.Name = "consoleControl1";
  40. this.consoleControl1.Size = new System.Drawing.Size(1184, 417);
  41. this.consoleControl1.TabIndex = 0;
  42. //
  43. // txtInput
  44. //
  45. this.txtInput.Dock = System.Windows.Forms.DockStyle.Bottom;
  46. this.txtInput.Location = new System.Drawing.Point(0, 417);
  47. this.txtInput.Name = "txtInput";
  48. this.txtInput.Size = new System.Drawing.Size(1184, 20);
  49. this.txtInput.TabIndex = 1;
  50. this.txtInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtInput_KeyDown);
  51. //
  52. // formMain
  53. //
  54. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  55. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  56. this.ClientSize = new System.Drawing.Size(1184, 437);
  57. this.Controls.Add(this.consoleControl1);
  58. this.Controls.Add(this.txtInput);
  59. this.MaximumSize = new System.Drawing.Size(1200, 99999);
  60. this.MinimumSize = new System.Drawing.Size(1200, 39);
  61. this.Name = "formMain";
  62. this.Text = "NTERA";
  63. this.ResumeLayout(false);
  64. this.PerformLayout();
  65. }
  66. #endregion
  67. private ConsoleControl consoleControl1;
  68. private System.Windows.Forms.TextBox txtInput;
  69. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  70. }
  71. }