|
|
|
@ -0,0 +1,164 @@ |
|
|
|
|
namespace NetworkSpeedTest |
|
|
|
|
{ |
|
|
|
|
partial class MainForm |
|
|
|
|
{ |
|
|
|
|
/// <summary> |
|
|
|
|
/// 필수 디자이너 변수입니다. |
|
|
|
|
/// </summary> |
|
|
|
|
private System.ComponentModel.IContainer components = null; |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 사용 중인 모든 리소스를 정리합니다. |
|
|
|
|
/// </summary> |
|
|
|
|
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param> |
|
|
|
|
protected override void Dispose(bool disposing) |
|
|
|
|
{ |
|
|
|
|
if (disposing && (components != null)) |
|
|
|
|
{ |
|
|
|
|
components.Dispose(); |
|
|
|
|
} |
|
|
|
|
base.Dispose(disposing); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#region Windows Form 디자이너에서 생성한 코드 |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 디자이너 지원에 필요한 메서드입니다. |
|
|
|
|
/// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오. |
|
|
|
|
/// </summary> |
|
|
|
|
private void InitializeComponent() |
|
|
|
|
{ |
|
|
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); |
|
|
|
|
this.CardComboBox = new System.Windows.Forms.ComboBox(); |
|
|
|
|
this.StartButton = new System.Windows.Forms.Button(); |
|
|
|
|
this.label1 = new System.Windows.Forms.Label(); |
|
|
|
|
this.SpeedBar = new System.Windows.Forms.ProgressBar(); |
|
|
|
|
this.label2 = new System.Windows.Forms.Label(); |
|
|
|
|
this.SpeedLabel = new System.Windows.Forms.Label(); |
|
|
|
|
this.label3 = new System.Windows.Forms.Label(); |
|
|
|
|
this.label4 = new System.Windows.Forms.Label(); |
|
|
|
|
this.MaxSpeedLabel = new System.Windows.Forms.Label(); |
|
|
|
|
this.SuspendLayout(); |
|
|
|
|
// |
|
|
|
|
// CardComboBox |
|
|
|
|
// |
|
|
|
|
this.CardComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
|
|
|
this.CardComboBox.FormattingEnabled = true; |
|
|
|
|
this.CardComboBox.Location = new System.Drawing.Point(99, 22); |
|
|
|
|
this.CardComboBox.Name = "CardComboBox"; |
|
|
|
|
this.CardComboBox.Size = new System.Drawing.Size(276, 20); |
|
|
|
|
this.CardComboBox.TabIndex = 0; |
|
|
|
|
this.CardComboBox.SelectedIndexChanged += new System.EventHandler(this.CardComboBox_SelectedIndexChanged); |
|
|
|
|
// |
|
|
|
|
// StartButton |
|
|
|
|
// |
|
|
|
|
this.StartButton.Location = new System.Drawing.Point(381, 21); |
|
|
|
|
this.StartButton.Name = "StartButton"; |
|
|
|
|
this.StartButton.Size = new System.Drawing.Size(75, 23); |
|
|
|
|
this.StartButton.TabIndex = 1; |
|
|
|
|
this.StartButton.Text = "측정"; |
|
|
|
|
this.StartButton.UseVisualStyleBackColor = true; |
|
|
|
|
this.StartButton.Click += new System.EventHandler(this.StartButton_Click); |
|
|
|
|
// |
|
|
|
|
// label1 |
|
|
|
|
// |
|
|
|
|
this.label1.AutoSize = true; |
|
|
|
|
this.label1.Location = new System.Drawing.Point(12, 26); |
|
|
|
|
this.label1.Name = "label1"; |
|
|
|
|
this.label1.Size = new System.Drawing.Size(81, 12); |
|
|
|
|
this.label1.TabIndex = 2; |
|
|
|
|
this.label1.Text = "네트워크 카드"; |
|
|
|
|
// |
|
|
|
|
// SpeedBar |
|
|
|
|
// |
|
|
|
|
this.SpeedBar.Location = new System.Drawing.Point(99, 48); |
|
|
|
|
this.SpeedBar.Maximum = 1000000000; |
|
|
|
|
this.SpeedBar.Name = "SpeedBar"; |
|
|
|
|
this.SpeedBar.Size = new System.Drawing.Size(357, 23); |
|
|
|
|
this.SpeedBar.TabIndex = 3; |
|
|
|
|
// |
|
|
|
|
// label2 |
|
|
|
|
// |
|
|
|
|
this.label2.AutoSize = true; |
|
|
|
|
this.label2.Location = new System.Drawing.Point(12, 53); |
|
|
|
|
this.label2.Name = "label2"; |
|
|
|
|
this.label2.Size = new System.Drawing.Size(29, 12); |
|
|
|
|
this.label2.TabIndex = 2; |
|
|
|
|
this.label2.Text = "속도"; |
|
|
|
|
// |
|
|
|
|
// SpeedLabel |
|
|
|
|
// |
|
|
|
|
this.SpeedLabel.AutoSize = true; |
|
|
|
|
this.SpeedLabel.Location = new System.Drawing.Point(97, 90); |
|
|
|
|
this.SpeedLabel.Name = "SpeedLabel"; |
|
|
|
|
this.SpeedLabel.Size = new System.Drawing.Size(36, 12); |
|
|
|
|
this.SpeedLabel.TabIndex = 2; |
|
|
|
|
this.SpeedLabel.Text = "0 bps"; |
|
|
|
|
// |
|
|
|
|
// label3 |
|
|
|
|
// |
|
|
|
|
this.label3.AutoSize = true; |
|
|
|
|
this.label3.Location = new System.Drawing.Point(12, 90); |
|
|
|
|
this.label3.Name = "label3"; |
|
|
|
|
this.label3.Size = new System.Drawing.Size(53, 12); |
|
|
|
|
this.label3.TabIndex = 2; |
|
|
|
|
this.label3.Text = "현재속도"; |
|
|
|
|
// |
|
|
|
|
// label4 |
|
|
|
|
// |
|
|
|
|
this.label4.AutoSize = true; |
|
|
|
|
this.label4.Location = new System.Drawing.Point(12, 116); |
|
|
|
|
this.label4.Name = "label4"; |
|
|
|
|
this.label4.Size = new System.Drawing.Size(53, 12); |
|
|
|
|
this.label4.TabIndex = 2; |
|
|
|
|
this.label4.Text = "최대속도"; |
|
|
|
|
// |
|
|
|
|
// MaxSpeedLabel |
|
|
|
|
// |
|
|
|
|
this.MaxSpeedLabel.AutoSize = true; |
|
|
|
|
this.MaxSpeedLabel.Location = new System.Drawing.Point(97, 116); |
|
|
|
|
this.MaxSpeedLabel.Name = "MaxSpeedLabel"; |
|
|
|
|
this.MaxSpeedLabel.Size = new System.Drawing.Size(36, 12); |
|
|
|
|
this.MaxSpeedLabel.TabIndex = 2; |
|
|
|
|
this.MaxSpeedLabel.Text = "0 bps"; |
|
|
|
|
// |
|
|
|
|
// MainForm |
|
|
|
|
// |
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); |
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
|
|
|
|
this.BackColor = System.Drawing.Color.White; |
|
|
|
|
this.ClientSize = new System.Drawing.Size(468, 147); |
|
|
|
|
this.Controls.Add(this.SpeedBar); |
|
|
|
|
this.Controls.Add(this.MaxSpeedLabel); |
|
|
|
|
this.Controls.Add(this.SpeedLabel); |
|
|
|
|
this.Controls.Add(this.label4); |
|
|
|
|
this.Controls.Add(this.label3); |
|
|
|
|
this.Controls.Add(this.label2); |
|
|
|
|
this.Controls.Add(this.label1); |
|
|
|
|
this.Controls.Add(this.StartButton); |
|
|
|
|
this.Controls.Add(this.CardComboBox); |
|
|
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); |
|
|
|
|
this.MaximizeBox = false; |
|
|
|
|
this.MinimizeBox = false; |
|
|
|
|
this.Name = "MainForm"; |
|
|
|
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; |
|
|
|
|
this.Text = "네트워크 속도 측정"; |
|
|
|
|
this.ResumeLayout(false); |
|
|
|
|
this.PerformLayout(); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#endregion |
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.ComboBox CardComboBox; |
|
|
|
|
private System.Windows.Forms.Button StartButton; |
|
|
|
|
private System.Windows.Forms.Label label1; |
|
|
|
|
private System.Windows.Forms.ProgressBar SpeedBar; |
|
|
|
|
private System.Windows.Forms.Label label2; |
|
|
|
|
private System.Windows.Forms.Label SpeedLabel; |
|
|
|
|
private System.Windows.Forms.Label label3; |
|
|
|
|
private System.Windows.Forms.Label label4; |
|
|
|
|
private System.Windows.Forms.Label MaxSpeedLabel; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|