namespace UART { partial class Form1 { /// /// 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.tbConnStr = new System.Windows.Forms.TextBox(); this.label6 = new System.Windows.Forms.Label(); this.button1 = new System.Windows.Forms.Button(); this.tbSend = new System.Windows.Forms.TextBox(); this.tbReceive = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // tbConnStr // this.tbConnStr.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular); this.tbConnStr.Location = new System.Drawing.Point(159, 13); this.tbConnStr.Name = "tbConnStr"; this.tbConnStr.Size = new System.Drawing.Size(229, 26); this.tbConnStr.TabIndex = 14; // // label6 // this.label6.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular); this.label6.Location = new System.Drawing.Point(16, 13); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(137, 20); this.label6.Text = "Connection String"; // // button1 // this.button1.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular); this.button1.Location = new System.Drawing.Point(16, 70); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(156, 42); this.button1.TabIndex = 20; this.button1.Text = "Send and Receive"; this.button1.Click += new System.EventHandler(this.button1_Click); // // tbSend // this.tbSend.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular); this.tbSend.Location = new System.Drawing.Point(16, 129); this.tbSend.Name = "tbSend"; this.tbSend.Size = new System.Drawing.Size(183, 26); this.tbSend.TabIndex = 21; this.tbSend.Text = "Hello"; // // tbReceive // this.tbReceive.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular); this.tbReceive.Location = new System.Drawing.Point(205, 129); this.tbReceive.Name = "tbReceive"; this.tbReceive.Size = new System.Drawing.Size(183, 26); this.tbReceive.TabIndex = 22; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(406, 171); this.Controls.Add(this.tbReceive); this.Controls.Add(this.tbSend); this.Controls.Add(this.button1); this.Controls.Add(this.label6); this.Controls.Add(this.tbConnStr); this.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular); this.Name = "Form1"; this.Text = "UART Demo"; this.Load += new System.EventHandler(this.Form1_Load); this.ResumeLayout(false); } #endregion private System.Windows.Forms.TextBox tbConnStr; private System.Windows.Forms.Label label6; private System.Windows.Forms.Button button1; private System.Windows.Forms.TextBox tbSend; private System.Windows.Forms.TextBox tbReceive; } }