namespace Chat { partial class Client { /// /// 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Client)); this.statusBar = new System.Windows.Forms.StatusStrip(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.chatPane = new System.Windows.Forms.RichTextBox(); this.buttonConnect = new System.Windows.Forms.ToolStripButton(); this.buttonDisconnect = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.buttonExit = new System.Windows.Forms.ToolStripButton(); this.labelDNS = new System.Windows.Forms.ToolStripLabel(); this.dns_ip = new System.Windows.Forms.ToolStripTextBox(); this.toolStrip1.SuspendLayout(); this.SuspendLayout(); // // statusBar // this.statusBar.Location = new System.Drawing.Point(0, 253); this.statusBar.Name = "statusBar"; this.statusBar.Size = new System.Drawing.Size(376, 22); this.statusBar.SizingGrip = false; this.statusBar.TabIndex = 0; this.statusBar.Text = "statusStrip1"; // // toolStrip1 // this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.labelDNS, this.dns_ip, this.buttonConnect, this.buttonDisconnect, this.toolStripSeparator1, this.buttonExit}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(376, 25); this.toolStrip1.TabIndex = 1; this.toolStrip1.Text = "toolStrip1"; // // chatPane // this.chatPane.BackColor = System.Drawing.Color.Black; this.chatPane.Location = new System.Drawing.Point(0, 28); this.chatPane.Name = "chatPane"; this.chatPane.ReadOnly = true; this.chatPane.Size = new System.Drawing.Size(376, 181); this.chatPane.TabIndex = 2; this.chatPane.Text = ""; // // buttonConnect // this.buttonConnect.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.buttonConnect.Image = ((System.Drawing.Image)(resources.GetObject("buttonConnect.Image"))); this.buttonConnect.ImageTransparentColor = System.Drawing.Color.Magenta; this.buttonConnect.Name = "buttonConnect"; this.buttonConnect.Size = new System.Drawing.Size(23, 22); this.buttonConnect.Text = "toolStripButton1"; this.buttonConnect.Click += new System.EventHandler(this.buttonConnect_Click); // // buttonDisconnect // this.buttonDisconnect.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.buttonDisconnect.Image = ((System.Drawing.Image)(resources.GetObject("buttonDisconnect.Image"))); this.buttonDisconnect.ImageTransparentColor = System.Drawing.Color.Magenta; this.buttonDisconnect.Name = "buttonDisconnect"; this.buttonDisconnect.Size = new System.Drawing.Size(23, 22); this.buttonDisconnect.Text = "toolStripButton2"; // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // buttonExit // this.buttonExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.buttonExit.Image = ((System.Drawing.Image)(resources.GetObject("buttonExit.Image"))); this.buttonExit.ImageTransparentColor = System.Drawing.Color.Magenta; this.buttonExit.Name = "buttonExit"; this.buttonExit.Size = new System.Drawing.Size(23, 22); this.buttonExit.Text = "toolStripButton3"; // // labelDNS // this.labelDNS.Name = "labelDNS"; this.labelDNS.Size = new System.Drawing.Size(55, 22); this.labelDNS.Text = "DNS or IP"; // // dns_ip // this.dns_ip.Name = "dns_ip"; this.dns_ip.Size = new System.Drawing.Size(125, 25); // // Client // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.ClientSize = new System.Drawing.Size(376, 275); this.Controls.Add(this.chatPane); this.Controls.Add(this.toolStrip1); this.Controls.Add(this.statusBar); this.MaximizeBox = false; this.Name = "Client"; this.Text = "TheSerialChatter"; this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.StatusStrip statusBar; private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.RichTextBox chatPane; private System.Windows.Forms.ToolStripButton buttonConnect; private System.Windows.Forms.ToolStripButton buttonDisconnect; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripButton buttonExit; private System.Windows.Forms.ToolStripLabel labelDNS; private System.Windows.Forms.ToolStripTextBox dns_ip; } }