namespace chatServ { 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainForm)); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox(); this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel(); this.serverMsg = new System.Windows.Forms.RichTextBox(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.buttonStart = new System.Windows.Forms.ToolStripButton(); this.buttonStop = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.buttonExit = new System.Windows.Forms.ToolStripButton(); this.toolStrip1.SuspendLayout(); this.SuspendLayout(); // // toolStrip1 // this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripLabel1, this.toolStripTextBox1, this.toolStripSeparator1, this.buttonStart, this.buttonStop, this.toolStripSeparator2, this.buttonExit}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(383, 25); this.toolStrip1.TabIndex = 0; this.toolStrip1.Text = "toolStrip1"; // // statusStrip1 // this.statusStrip1.Location = new System.Drawing.Point(0, 251); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(383, 22); this.statusStrip1.TabIndex = 1; this.statusStrip1.Text = "statusStrip1"; // // toolStripTextBox1 // this.toolStripTextBox1.Name = "toolStripTextBox1"; this.toolStripTextBox1.Size = new System.Drawing.Size(65, 25); // // toolStripLabel1 // this.toolStripLabel1.Name = "toolStripLabel1"; this.toolStripLabel1.Size = new System.Drawing.Size(77, 22); this.toolStripLabel1.Text = "Port to listen to"; // // serverMsg // this.serverMsg.BackColor = System.Drawing.Color.Black; this.serverMsg.Location = new System.Drawing.Point(0, 32); this.serverMsg.Name = "serverMsg"; this.serverMsg.Size = new System.Drawing.Size(383, 181); this.serverMsg.TabIndex = 2; this.serverMsg.Text = ""; // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // buttonStart // this.buttonStart.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.buttonStart.Image = ((System.Drawing.Image)(resources.GetObject("buttonStart.Image"))); this.buttonStart.ImageTransparentColor = System.Drawing.Color.Magenta; this.buttonStart.Name = "buttonStart"; this.buttonStart.Size = new System.Drawing.Size(23, 22); this.buttonStart.Text = "toolStripButton1"; // // buttonStop // this.buttonStop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.buttonStop.Image = ((System.Drawing.Image)(resources.GetObject("buttonStop.Image"))); this.buttonStop.ImageTransparentColor = System.Drawing.Color.Magenta; this.buttonStop.Name = "buttonStop"; this.buttonStop.Size = new System.Drawing.Size(23, 22); this.buttonStop.Text = "toolStripButton2"; // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.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"; // // mainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(383, 273); this.Controls.Add(this.serverMsg); this.Controls.Add(this.statusStrip1); this.Controls.Add(this.toolStrip1); this.Name = "mainForm"; this.Text = "ChatServer"; this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.ToolStripTextBox toolStripTextBox1; private System.Windows.Forms.ToolStripLabel toolStripLabel1; private System.Windows.Forms.RichTextBox serverMsg; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripButton buttonStart; private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; private System.Windows.Forms.ToolStripButton buttonStop; private System.Windows.Forms.ToolStripButton buttonExit; } }