namespace SimpleExample { partial class simpleexample { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.CMB_comport = new System.Windows.Forms.ComboBox(); this.cmb_baudrate = new System.Windows.Forms.ComboBox(); this.but_connect = new System.Windows.Forms.Button(); this.serialPort1 = new System.IO.Ports.SerialPort(this.components); this.listBox1 = new System.Windows.Forms.ListBox(); this.richTextBox1 = new System.Windows.Forms.RichTextBox(); this.SuspendLayout(); // // CMB_comport // this.CMB_comport.FormattingEnabled = true; this.CMB_comport.Location = new System.Drawing.Point(13, 13); this.CMB_comport.Name = "CMB_comport"; this.CMB_comport.Size = new System.Drawing.Size(121, 21); this.CMB_comport.TabIndex = 0; this.CMB_comport.Click += new System.EventHandler(this.CMB_comport_Click); // // cmb_baudrate // this.cmb_baudrate.FormattingEnabled = true; this.cmb_baudrate.Items.AddRange(new object[] { "9600", "14400", "19200", "28800", "38400", "57600", "115200"}); this.cmb_baudrate.Location = new System.Drawing.Point(140, 12); this.cmb_baudrate.Name = "cmb_baudrate"; this.cmb_baudrate.Size = new System.Drawing.Size(121, 21); this.cmb_baudrate.TabIndex = 1; // // but_connect // this.but_connect.Location = new System.Drawing.Point(268, 12); this.but_connect.Name = "but_connect"; this.but_connect.Size = new System.Drawing.Size(75, 23); this.but_connect.TabIndex = 2; this.but_connect.Text = "Connect"; this.but_connect.UseVisualStyleBackColor = true; this.but_connect.Click += new System.EventHandler(this.but_connect_Click); // // listBox1 // this.listBox1.FormattingEnabled = true; this.listBox1.Location = new System.Drawing.Point(6, 47); this.listBox1.Name = "listBox1"; this.listBox1.Size = new System.Drawing.Size(169, 303); this.listBox1.TabIndex = 3; // // richTextBox1 // this.richTextBox1.Location = new System.Drawing.Point(211, 69); this.richTextBox1.Name = "richTextBox1"; this.richTextBox1.Size = new System.Drawing.Size(310, 204); this.richTextBox1.TabIndex = 4; this.richTextBox1.Text = ""; // // simpleexample // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(547, 363); this.Controls.Add(this.richTextBox1); this.Controls.Add(this.listBox1); this.Controls.Add(this.but_connect); this.Controls.Add(this.cmb_baudrate); this.Controls.Add(this.CMB_comport); this.Name = "simpleexample"; this.Text = "Form1"; this.Load += new System.EventHandler(this.simpleexample_Load); this.ResumeLayout(false); } #endregion private System.Windows.Forms.ComboBox CMB_comport; private System.Windows.Forms.ComboBox cmb_baudrate; private System.Windows.Forms.Button but_connect; private System.IO.Ports.SerialPort serialPort1; private System.Windows.Forms.ListBox listBox1; private System.Windows.Forms.RichTextBox richTextBox1; } }