namespace SampleApp { partial class MainForm { /// /// 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.StatusLabel = new System.Windows.Forms.Label(); this.ConnectionStatusLabel = new System.Windows.Forms.Label(); this.ExitButton = new System.Windows.Forms.Button(); this.ConnectButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // StatusLabel // this.StatusLabel.AutoSize = true; this.StatusLabel.ForeColor = System.Drawing.Color.Red; this.StatusLabel.Location = new System.Drawing.Point(169, 40); this.StatusLabel.Name = "StatusLabel"; this.StatusLabel.Size = new System.Drawing.Size(72, 13); this.StatusLabel.TabIndex = 0; this.StatusLabel.Text = "Unconnected"; // // ConnectionStatusLabel // this.ConnectionStatusLabel.AutoSize = true; this.ConnectionStatusLabel.Location = new System.Drawing.Point(54, 40); this.ConnectionStatusLabel.Name = "ConnectionStatusLabel"; this.ConnectionStatusLabel.Size = new System.Drawing.Size(97, 13); this.ConnectionStatusLabel.TabIndex = 1; this.ConnectionStatusLabel.Text = "Connection Status:"; // // ExitButton // this.ExitButton.Location = new System.Drawing.Point(400, 375); this.ExitButton.Name = "ExitButton"; this.ExitButton.Size = new System.Drawing.Size(75, 23); this.ExitButton.TabIndex = 2; this.ExitButton.Text = "Exit"; this.ExitButton.UseVisualStyleBackColor = true; this.ExitButton.Click += new System.EventHandler(this.ExitButton_Click); // // ConnectButton // this.ConnectButton.Location = new System.Drawing.Point(319, 375); this.ConnectButton.Name = "ConnectButton"; this.ConnectButton.Size = new System.Drawing.Size(75, 23); this.ConnectButton.TabIndex = 3; this.ConnectButton.Text = "Connect"; this.ConnectButton.UseVisualStyleBackColor = true; this.ConnectButton.Click += new System.EventHandler(this.ConnectButton_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(487, 410); this.Controls.Add(this.ConnectButton); this.Controls.Add(this.ExitButton); this.Controls.Add(this.ConnectionStatusLabel); this.Controls.Add(this.StatusLabel); this.Name = "MainForm"; this.Text = "Sample App"; this.Load += new System.EventHandler(this.Form1_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label StatusLabel; private System.Windows.Forms.Label ConnectionStatusLabel; private System.Windows.Forms.Button ExitButton; private System.Windows.Forms.Button ConnectButton; } }