⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 serverform.designer.cs

📁 rudp可靠保障得udp传输
💻 CS
字号:
namespace Test.Application
{
	partial class ServerForm
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose(bool disposing)
		{
			if (disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Windows Form Designer generated code

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.btnStart = new System.Windows.Forms.Button();
			this.txtIPAddress = new System.Windows.Forms.TextBox();
			this.label2 = new System.Windows.Forms.Label();
			this.txtIPPort = new System.Windows.Forms.TextBox();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.rbTCP = new System.Windows.Forms.RadioButton();
			this.rbRUDP = new System.Windows.Forms.RadioButton();
			this.txtRate = new System.Windows.Forms.TextBox();
			this.label3 = new System.Windows.Forms.Label();
			this.txtSeconds = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.txtTotalBytes = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.txtCurrentRate = new System.Windows.Forms.TextBox();
			this.label5 = new System.Windows.Forms.Label();
			this.trackBarZoom = new System.Windows.Forms.TrackBar();
			this.labelZoom = new System.Windows.Forms.Label();
			this.panel1 = new System.Windows.Forms.Panel();
			this.performanceGraph = new Test.Helper.Windows.PerformanceGraph();
			this.panel2 = new System.Windows.Forms.Panel();
			this.label6 = new System.Windows.Forms.Label();
			this.label7 = new System.Windows.Forms.Label();
			this.panel3 = new System.Windows.Forms.Panel();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.rbUDT = new System.Windows.Forms.RadioButton();
			this.groupBox1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.trackBarZoom)).BeginInit();
			this.panel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// btnStart
			// 
			this.btnStart.Location = new System.Drawing.Point(4, 128);
			this.btnStart.Name = "btnStart";
			this.btnStart.Size = new System.Drawing.Size(75, 23);
			this.btnStart.TabIndex = 0;
			this.btnStart.Text = "Start...";
			this.btnStart.UseVisualStyleBackColor = true;
			this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
			// 
			// txtIPAddress
			// 
			this.txtIPAddress.Location = new System.Drawing.Point(64, 54);
			this.txtIPAddress.Name = "txtIPAddress";
			this.txtIPAddress.Size = new System.Drawing.Size(100, 20);
			this.txtIPAddress.TabIndex = 3;
			this.txtIPAddress.Text = "172.22.41.81";
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(4, 57);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(54, 13);
			this.label2.TabIndex = 4;
			this.label2.Text = "Server IP:";
			// 
			// txtIPPort
			// 
			this.txtIPPort.Location = new System.Drawing.Point(64, 80);
			this.txtIPPort.Name = "txtIPPort";
			this.txtIPPort.Size = new System.Drawing.Size(29, 20);
			this.txtIPPort.TabIndex = 5;
			this.txtIPPort.Text = "100";
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.rbUDT);
			this.groupBox1.Controls.Add(this.rbTCP);
			this.groupBox1.Controls.Add(this.rbRUDP);
			this.groupBox1.Controls.Add(this.txtIPPort);
			this.groupBox1.Controls.Add(this.label2);
			this.groupBox1.Controls.Add(this.txtIPAddress);
			this.groupBox1.Location = new System.Drawing.Point(4, 17);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(206, 105);
			this.groupBox1.TabIndex = 6;
			this.groupBox1.TabStop = false;
			// 
			// rbTCP
			// 
			this.rbTCP.AutoSize = true;
			this.rbTCP.Location = new System.Drawing.Point(118, 19);
			this.rbTCP.Name = "rbTCP";
			this.rbTCP.Size = new System.Drawing.Size(46, 17);
			this.rbTCP.TabIndex = 35;
			this.rbTCP.Text = "TCP";
			this.rbTCP.UseVisualStyleBackColor = true;
			// 
			// rbRUDP
			// 
			this.rbRUDP.AutoSize = true;
			this.rbRUDP.Checked = true;
			this.rbRUDP.Location = new System.Drawing.Point(7, 19);
			this.rbRUDP.Name = "rbRUDP";
			this.rbRUDP.Size = new System.Drawing.Size(56, 17);
			this.rbRUDP.TabIndex = 34;
			this.rbRUDP.TabStop = true;
			this.rbRUDP.Text = "RUDP";
			this.rbRUDP.UseVisualStyleBackColor = true;
			// 
			// txtRate
			// 
			this.txtRate.Location = new System.Drawing.Point(86, 170);
			this.txtRate.Name = "txtRate";
			this.txtRate.Size = new System.Drawing.Size(140, 20);
			this.txtRate.TabIndex = 13;
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(9, 173);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(71, 13);
			this.label3.TabIndex = 12;
			this.label3.Text = "Receive rate:";
			// 
			// txtSeconds
			// 
			this.txtSeconds.Location = new System.Drawing.Point(86, 259);
			this.txtSeconds.Name = "txtSeconds";
			this.txtSeconds.Size = new System.Drawing.Size(140, 20);
			this.txtSeconds.TabIndex = 22;
			// 
			// label4
			// 
			this.label4.AutoSize = true;
			this.label4.Location = new System.Drawing.Point(9, 262);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(55, 13);
			this.label4.TabIndex = 21;
			this.label4.Text = "Seconds :";
			// 
			// txtTotalBytes
			// 
			this.txtTotalBytes.Location = new System.Drawing.Point(86, 233);
			this.txtTotalBytes.Name = "txtTotalBytes";
			this.txtTotalBytes.Size = new System.Drawing.Size(140, 20);
			this.txtTotalBytes.TabIndex = 20;
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(9, 236);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(69, 13);
			this.label1.TabIndex = 19;
			this.label1.Text = "Total Kbytes:";
			// 
			// txtCurrentRate
			// 
			this.txtCurrentRate.Location = new System.Drawing.Point(86, 196);
			this.txtCurrentRate.Name = "txtCurrentRate";
			this.txtCurrentRate.Size = new System.Drawing.Size(140, 20);
			this.txtCurrentRate.TabIndex = 24;
			// 
			// label5
			// 
			this.label5.AutoSize = true;
			this.label5.Location = new System.Drawing.Point(9, 199);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(65, 13);
			this.label5.TabIndex = 23;
			this.label5.Text = "Current rate:";
			// 
			// trackBarZoom
			// 
			this.trackBarZoom.Location = new System.Drawing.Point(234, 413);
			this.trackBarZoom.Maximum = 200000;
			this.trackBarZoom.Name = "trackBarZoom";
			this.trackBarZoom.Size = new System.Drawing.Size(426, 45);
			this.trackBarZoom.TabIndex = 26;
			this.trackBarZoom.TickStyle = System.Windows.Forms.TickStyle.None;
			this.trackBarZoom.Value = 65000;
			this.trackBarZoom.Scroll += new System.EventHandler(this.trackBarZoom_Scroll);
			// 
			// labelZoom
			// 
			this.labelZoom.AutoSize = true;
			this.labelZoom.Location = new System.Drawing.Point(244, 445);
			this.labelZoom.Name = "labelZoom";
			this.labelZoom.Size = new System.Drawing.Size(99, 13);
			this.labelZoom.TabIndex = 27;
			this.labelZoom.Text = "Zoom : 65000 Kb/s";
			// 
			// panel1
			// 
			this.panel1.BackColor = System.Drawing.Color.Maroon;
			this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel1.Controls.Add(this.performanceGraph);
			this.panel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
			this.panel1.Location = new System.Drawing.Point(236, 17);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(426, 392);
			this.panel1.TabIndex = 28;
			// 
			// performanceGraph
			// 
			this.performanceGraph.AutoAdjustPeek = false;
			this.performanceGraph.BackColor = System.Drawing.Color.Black;
			this.performanceGraph.GridColor = System.Drawing.Color.Green;
			this.performanceGraph.GridSize = ((ushort)(15));
			this.performanceGraph.HighQuality = false;
			this.performanceGraph.LineInterval = ((ushort)(1));
			this.performanceGraph.Location = new System.Drawing.Point(1, 1);
			this.performanceGraph.MaxLabel = "65000 (Kb/s)";
			this.performanceGraph.MaxPeekMagnitude = 65000;
			this.performanceGraph.MinLabel = "0";
			this.performanceGraph.MinPeekMagnitude = 0;
			this.performanceGraph.Name = "performanceGraph";
			this.performanceGraph.ShowGrid = true;
			this.performanceGraph.ShowLabels = true;
			this.performanceGraph.Size = new System.Drawing.Size(422, 388);
			this.performanceGraph.TabIndex = 29;
			this.performanceGraph.Text = "performanceGraph1";
			this.performanceGraph.TextColor = System.Drawing.Color.Yellow;
			// 
			// panel2
			// 
			this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
			this.panel2.Location = new System.Drawing.Point(126, 359);
			this.panel2.Name = "panel2";
			this.panel2.Size = new System.Drawing.Size(100, 1);
			this.panel2.TabIndex = 29;
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point(12, 324);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(117, 13);
			this.label6.TabIndex = 30;
			this.label6.Text = "Average speed( Kb/s) :";
			// 
			// label7
			// 
			this.label7.AutoSize = true;
			this.label7.Location = new System.Drawing.Point(12, 351);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(111, 13);
			this.label7.TabIndex = 32;
			this.label7.Text = "Current speed( Kb/s) :";
			// 
			// panel3
			// 
			this.panel3.BackColor = System.Drawing.Color.White;
			this.panel3.Location = new System.Drawing.Point(126, 332);
			this.panel3.Name = "panel3";
			this.panel3.Size = new System.Drawing.Size(100, 1);
			this.panel3.TabIndex = 31;
			// 
			// groupBox2
			// 
			this.groupBox2.Location = new System.Drawing.Point(4, 307);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(228, 73);
			this.groupBox2.TabIndex = 33;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = " Legend ";
			// 
			// rbUDT
			// 
			this.rbUDT.AutoSize = true;
			this.rbUDT.Location = new System.Drawing.Point(64, 19);
			this.rbUDT.Name = "rbUDT";
			this.rbUDT.Size = new System.Drawing.Size(48, 17);
			this.rbUDT.TabIndex = 36;
			this.rbUDT.Text = "UDT";
			this.rbUDT.UseVisualStyleBackColor = true;
			// 
			// ServerForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(674, 466);
			this.Controls.Add(this.label7);
			this.Controls.Add(this.panel3);
			this.Controls.Add(this.label6);
			this.Controls.Add(this.panel2);
			this.Controls.Add(this.labelZoom);
			this.Controls.Add(this.trackBarZoom);
			this.Controls.Add(this.txtCurrentRate);
			this.Controls.Add(this.label5);
			this.Controls.Add(this.txtSeconds);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.txtTotalBytes);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.txtRate);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.groupBox1);
			this.Controls.Add(this.btnStart);
			this.Controls.Add(this.panel1);
			this.Controls.Add(this.groupBox2);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Name = "ServerForm";
			this.Text = "RUDP Server";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TCPServerForm_FormClosing);
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.trackBarZoom)).EndInit();
			this.panel1.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.Button btnStart;
		private System.Windows.Forms.TextBox txtIPAddress;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.TextBox txtIPPort;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.TextBox txtRate;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.TextBox txtSeconds;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.TextBox txtTotalBytes;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.TextBox txtCurrentRate;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.TrackBar trackBarZoom;
		private System.Windows.Forms.Label labelZoom;
		private System.Windows.Forms.Panel panel1;
		private Test.Helper.Windows.PerformanceGraph performanceGraph;
		private System.Windows.Forms.Panel panel2;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Panel panel3;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.RadioButton rbTCP;
		private System.Windows.Forms.RadioButton rbRUDP;
		private System.Windows.Forms.RadioButton rbUDT;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -