namespace xServer.Forms { partial class FrmReverseProxy { /// /// 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.btnStart = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.nudServerPort = new System.Windows.Forms.NumericUpDown(); this.tabControl1 = new System.Windows.Forms.TabControl(); this.tabPage1 = new System.Windows.Forms.TabPage(); this.LvConnections = new System.Windows.Forms.ListView(); this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.btnStop = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.nudServerPort)).BeginInit(); this.tabControl1.SuspendLayout(); this.tabPage1.SuspendLayout(); this.SuspendLayout(); // // btnStart // this.btnStart.Location = new System.Drawing.Point(243, 12); this.btnStart.Name = "btnStart"; this.btnStart.Size = new System.Drawing.Size(114, 23); this.btnStart.TabIndex = 0; this.btnStart.Text = "Start Listening"; this.btnStart.UseVisualStyleBackColor = true; this.btnStart.Click += new System.EventHandler(this.btnStart_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(22, 17); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(89, 13); this.label1.TabIndex = 1; this.label1.Text = "Local Server Port"; // // nudServerPort // this.nudServerPort.Location = new System.Drawing.Point(117, 15); this.nudServerPort.Maximum = new decimal(new int[] { 65534, 0, 0, 0}); this.nudServerPort.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.nudServerPort.Name = "nudServerPort"; this.nudServerPort.Size = new System.Drawing.Size(120, 20); this.nudServerPort.TabIndex = 2; this.nudServerPort.Value = new decimal(new int[] { 3128, 0, 0, 0}); // // tabControl1 // this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tabControl1.Controls.Add(this.tabPage1); this.tabControl1.Location = new System.Drawing.Point(26, 52); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(533, 253); this.tabControl1.TabIndex = 3; // // tabPage1 // this.tabPage1.Controls.Add(this.LvConnections); this.tabPage1.Location = new System.Drawing.Point(4, 22); this.tabPage1.Name = "tabPage1"; this.tabPage1.Padding = new System.Windows.Forms.Padding(3); this.tabPage1.Size = new System.Drawing.Size(525, 227); this.tabPage1.TabIndex = 0; this.tabPage1.Text = "Open Connections"; this.tabPage1.UseVisualStyleBackColor = true; // // LvConnections // this.LvConnections.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2, this.columnHeader3, this.columnHeader4, this.columnHeader5}); this.LvConnections.Dock = System.Windows.Forms.DockStyle.Fill; this.LvConnections.FullRowSelect = true; this.LvConnections.GridLines = true; this.LvConnections.Location = new System.Drawing.Point(3, 3); this.LvConnections.Name = "LvConnections"; this.LvConnections.Size = new System.Drawing.Size(519, 221); this.LvConnections.TabIndex = 0; this.LvConnections.UseCompatibleStateImageBehavior = false; this.LvConnections.View = System.Windows.Forms.View.Details; // // columnHeader1 // this.columnHeader1.Text = "Target Server"; this.columnHeader1.Width = 135; // // columnHeader2 // this.columnHeader2.Text = "Target Port"; this.columnHeader2.Width = 68; // // columnHeader3 // this.columnHeader3.Text = "Total Receive"; this.columnHeader3.Width = 105; // // columnHeader4 // this.columnHeader4.Text = "Total Send"; this.columnHeader4.Width = 95; // // columnHeader5 // this.columnHeader5.Text = "Proxy Type"; this.columnHeader5.Width = 90; // // btnStop // this.btnStop.Location = new System.Drawing.Point(363, 12); this.btnStop.Name = "btnStop"; this.btnStop.Size = new System.Drawing.Size(114, 23); this.btnStop.TabIndex = 4; this.btnStop.Text = "Stop Listening"; this.btnStop.UseVisualStyleBackColor = true; this.btnStop.Click += new System.EventHandler(this.btnStop_Click); // // FrmReverseProxy // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(574, 318); this.Controls.Add(this.btnStop); this.Controls.Add(this.tabControl1); this.Controls.Add(this.nudServerPort); this.Controls.Add(this.label1); this.Controls.Add(this.btnStart); this.Name = "FrmReverseProxy"; this.ShowIcon = false; this.Text = "Reverse Proxy"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmReverseProxy_FormClosing); this.Load += new System.EventHandler(this.FrmReverseProxy_Load); ((System.ComponentModel.ISupportInitialize)(this.nudServerPort)).EndInit(); this.tabControl1.ResumeLayout(false); this.tabPage1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnStart; private System.Windows.Forms.Label label1; private System.Windows.Forms.NumericUpDown nudServerPort; private System.Windows.Forms.TabControl tabControl1; private System.Windows.Forms.TabPage tabPage1; private System.Windows.Forms.ListView LvConnections; private System.Windows.Forms.ColumnHeader columnHeader1; private System.Windows.Forms.ColumnHeader columnHeader2; private System.Windows.Forms.ColumnHeader columnHeader3; private System.Windows.Forms.ColumnHeader columnHeader4; private System.Windows.Forms.ColumnHeader columnHeader5; private System.Windows.Forms.Button btnStop; } }