Advertisement
Guest User

formMain.Designer.cs

a guest
Jan 7th, 2019
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 8.35 KB | None | 0 0
  1. namespace uartToCs_version_2._0
  2. {
  3.     partial class formMain
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  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.  
  23.         #region Windows Form Designer generated code
  24.  
  25.         /// <summary>
  26.         /// Required method for Designer support - do not modify
  27.         /// the contents of this method with the code editor.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(formMain));
  32.             this.menuStrip = new System.Windows.Forms.MenuStrip();
  33.             this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34.             this.serialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35.             this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  36.             this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
  37.             lblSerialStatus = new System.Windows.Forms.ToolStripStatusLabel();
  38.             this.rtbOutput = new System.Windows.Forms.RichTextBox();
  39.             this.rtbInput = new System.Windows.Forms.RichTextBox();
  40.             this.lblInput = new System.Windows.Forms.Label();
  41.             this.lblOutput = new System.Windows.Forms.Label();
  42.             this.tbInput = new System.Windows.Forms.TextBox();
  43.             this.menuStrip.SuspendLayout();
  44.             this.statusStrip1.SuspendLayout();
  45.             this.SuspendLayout();
  46.             //
  47.             // menuStrip
  48.             //
  49.             this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  50.             this.settingsToolStripMenuItem});
  51.             this.menuStrip.Location = new System.Drawing.Point(0, 0);
  52.             this.menuStrip.Name = "menuStrip";
  53.             this.menuStrip.Size = new System.Drawing.Size(551, 24);
  54.             this.menuStrip.TabIndex = 0;
  55.             this.menuStrip.Text = "menuStrip1";
  56.             //
  57.             // settingsToolStripMenuItem
  58.             //
  59.             this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  60.             this.serialToolStripMenuItem});
  61.             this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
  62.             this.settingsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
  63.             this.settingsToolStripMenuItem.Text = "Settings";
  64.             //
  65.             // serialToolStripMenuItem
  66.             //
  67.             this.serialToolStripMenuItem.Name = "serialToolStripMenuItem";
  68.             this.serialToolStripMenuItem.Size = new System.Drawing.Size(102, 22);
  69.             this.serialToolStripMenuItem.Text = "Serial";
  70.             this.serialToolStripMenuItem.Click += new System.EventHandler(this.serialToolStripMenuItem_Click);
  71.             //
  72.             // statusStrip1
  73.             //
  74.             this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  75.             this.toolStripStatusLabel1,
  76.             lblSerialStatus});
  77.             this.statusStrip1.Location = new System.Drawing.Point(0, 296);
  78.             this.statusStrip1.Name = "statusStrip1";
  79.             this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
  80.             this.statusStrip1.Size = new System.Drawing.Size(551, 22);
  81.             this.statusStrip1.TabIndex = 1;
  82.             this.statusStrip1.Text = "statusStrip1";
  83.             //
  84.             // toolStripStatusLabel1
  85.             //
  86.             this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
  87.             this.toolStripStatusLabel1.Size = new System.Drawing.Size(38, 17);
  88.             this.toolStripStatusLabel1.Text = "Serial:";
  89.             //
  90.             // lblSerialStatus
  91.             //
  92.             lblSerialStatus.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  93.             lblSerialStatus.Name = "lblSerialStatus";
  94.             lblSerialStatus.Size = new System.Drawing.Size(109, 17);
  95.             lblSerialStatus.Text = "no communication";
  96.             //
  97.             // rtbOutput
  98.             //
  99.             this.rtbOutput.Location = new System.Drawing.Point(278, 67);
  100.             this.rtbOutput.Name = "rtbOutput";
  101.             this.rtbOutput.ReadOnly = true;
  102.             this.rtbOutput.Size = new System.Drawing.Size(260, 200);
  103.             this.rtbOutput.TabIndex = 2;
  104.             this.rtbOutput.Text = "";
  105.             //
  106.             // rtbInput
  107.             //
  108.             this.rtbInput.Location = new System.Drawing.Point(12, 93);
  109.             this.rtbInput.Name = "rtbInput";
  110.             this.rtbInput.ReadOnly = true;
  111.             this.rtbInput.Size = new System.Drawing.Size(260, 174);
  112.             this.rtbInput.TabIndex = 3;
  113.             this.rtbInput.Text = "";
  114.             //
  115.             // lblInput
  116.             //
  117.             this.lblInput.AutoSize = true;
  118.             this.lblInput.Location = new System.Drawing.Point(13, 48);
  119.             this.lblInput.Name = "lblInput";
  120.             this.lblInput.Size = new System.Drawing.Size(34, 13);
  121.             this.lblInput.TabIndex = 4;
  122.             this.lblInput.Text = "Input:";
  123.             //
  124.             // lblOutput
  125.             //
  126.             this.lblOutput.AutoSize = true;
  127.             this.lblOutput.Location = new System.Drawing.Point(275, 48);
  128.             this.lblOutput.Name = "lblOutput";
  129.             this.lblOutput.Size = new System.Drawing.Size(42, 13);
  130.             this.lblOutput.TabIndex = 5;
  131.             this.lblOutput.Text = "Output:";
  132.             //
  133.             // tbInput
  134.             //
  135.             this.tbInput.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  136.             this.tbInput.Location = new System.Drawing.Point(12, 67);
  137.             this.tbInput.Name = "tbInput";
  138.             this.tbInput.Size = new System.Drawing.Size(260, 20);
  139.             this.tbInput.TabIndex = 6;
  140.             this.tbInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbInput_KeyDown);
  141.             //
  142.             // formMain
  143.             //
  144.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  145.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  146.             this.ClientSize = new System.Drawing.Size(551, 318);
  147.             this.Controls.Add(this.tbInput);
  148.             this.Controls.Add(this.lblOutput);
  149.             this.Controls.Add(this.lblInput);
  150.             this.Controls.Add(this.rtbInput);
  151.             this.Controls.Add(this.rtbOutput);
  152.             this.Controls.Add(this.statusStrip1);
  153.             this.Controls.Add(this.menuStrip);
  154.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  155.             this.MainMenuStrip = this.menuStrip;
  156.             this.Name = "formMain";
  157.             this.Text = "Serial Reader";
  158.             this.Load += new System.EventHandler(this.formMain_Load);
  159.             this.menuStrip.ResumeLayout(false);
  160.             this.menuStrip.PerformLayout();
  161.             this.statusStrip1.ResumeLayout(false);
  162.             this.statusStrip1.PerformLayout();
  163.             this.ResumeLayout(false);
  164.             this.PerformLayout();
  165.  
  166.         }
  167.  
  168.         #endregion
  169.  
  170.         private System.Windows.Forms.MenuStrip menuStrip;
  171.         private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
  172.         private System.Windows.Forms.ToolStripMenuItem serialToolStripMenuItem;
  173.         private System.Windows.Forms.StatusStrip statusStrip1;
  174.         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
  175.         private System.Windows.Forms.RichTextBox rtbOutput;
  176.         private System.Windows.Forms.RichTextBox rtbInput;
  177.         private System.Windows.Forms.Label lblInput;
  178.         private System.Windows.Forms.Label lblOutput;
  179.         private System.Windows.Forms.TextBox tbInput;
  180.         public static System.Windows.Forms.ToolStripStatusLabel lblSerialStatus;
  181.     }
  182. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement