|
@@ -28,25 +28,65 @@
|
28
|
28
|
/// </summary>
|
29
|
29
|
private void InitializeComponent()
|
30
|
30
|
{
|
31
|
|
- this.labelSourceData = new System.Windows.Forms.Label();
|
|
31
|
+ this.rtbCmd = new System.Windows.Forms.RichTextBox();
|
|
32
|
+ this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
33
|
+ this.没有ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
34
|
+ this.buttonCancle = new System.Windows.Forms.Button();
|
|
35
|
+ this.menuStrip1.SuspendLayout();
|
32
|
36
|
this.SuspendLayout();
|
33
|
37
|
//
|
34
|
|
- // labelSourceData
|
|
38
|
+ // rtbCmd
|
35
|
39
|
//
|
36
|
|
- this.labelSourceData.AutoSize = true;
|
37
|
|
- this.labelSourceData.Location = new System.Drawing.Point(357, 13);
|
38
|
|
- this.labelSourceData.Name = "labelSourceData";
|
39
|
|
- this.labelSourceData.Size = new System.Drawing.Size(43, 17);
|
40
|
|
- this.labelSourceData.TabIndex = 0;
|
41
|
|
- this.labelSourceData.Text = "label1";
|
|
40
|
+ this.rtbCmd.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
41
|
+ | System.Windows.Forms.AnchorStyles.Right)));
|
|
42
|
+ this.rtbCmd.Location = new System.Drawing.Point(12, 28);
|
|
43
|
+ this.rtbCmd.Name = "rtbCmd";
|
|
44
|
+ this.rtbCmd.ReadOnly = true;
|
|
45
|
+ this.rtbCmd.Size = new System.Drawing.Size(997, 96);
|
|
46
|
+ this.rtbCmd.TabIndex = 1;
|
|
47
|
+ this.rtbCmd.Text = "";
|
|
48
|
+ //
|
|
49
|
+ // menuStrip1
|
|
50
|
+ //
|
|
51
|
+ this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
52
|
+ this.没有ToolStripMenuItem});
|
|
53
|
+ this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
54
|
+ this.menuStrip1.Name = "menuStrip1";
|
|
55
|
+ this.menuStrip1.Size = new System.Drawing.Size(1021, 25);
|
|
56
|
+ this.menuStrip1.TabIndex = 2;
|
|
57
|
+ this.menuStrip1.Text = "menuStrip1";
|
|
58
|
+ //
|
|
59
|
+ // 没有ToolStripMenuItem
|
|
60
|
+ //
|
|
61
|
+ this.没有ToolStripMenuItem.Name = "没有ToolStripMenuItem";
|
|
62
|
+ this.没有ToolStripMenuItem.Size = new System.Drawing.Size(44, 21);
|
|
63
|
+ this.没有ToolStripMenuItem.Text = "没有";
|
|
64
|
+ //
|
|
65
|
+ // buttonCancle
|
|
66
|
+ //
|
|
67
|
+ this.buttonCancle.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
68
|
+ | System.Windows.Forms.AnchorStyles.Left)
|
|
69
|
+ | System.Windows.Forms.AnchorStyles.Right)));
|
|
70
|
+ this.buttonCancle.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
71
|
+ this.buttonCancle.Location = new System.Drawing.Point(934, 448);
|
|
72
|
+ this.buttonCancle.Name = "buttonCancle";
|
|
73
|
+ this.buttonCancle.Size = new System.Drawing.Size(75, 23);
|
|
74
|
+ this.buttonCancle.TabIndex = 3;
|
|
75
|
+ this.buttonCancle.Text = "取消";
|
|
76
|
+ this.buttonCancle.UseVisualStyleBackColor = true;
|
|
77
|
+ this.buttonCancle.Click += new System.EventHandler(this.buttonCancle_Click);
|
42
|
78
|
//
|
43
|
79
|
// AnaProtocol
|
44
|
80
|
//
|
45
|
81
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
|
46
|
82
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
47
|
|
- this.ClientSize = new System.Drawing.Size(1021, 841);
|
48
|
|
- this.Controls.Add(this.labelSourceData);
|
|
83
|
+ this.CancelButton = this.buttonCancle;
|
|
84
|
+ this.ClientSize = new System.Drawing.Size(1021, 497);
|
|
85
|
+ this.Controls.Add(this.buttonCancle);
|
|
86
|
+ this.Controls.Add(this.rtbCmd);
|
|
87
|
+ this.Controls.Add(this.menuStrip1);
|
49
|
88
|
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
89
|
+ this.MainMenuStrip = this.menuStrip1;
|
50
|
90
|
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
51
|
91
|
this.Name = "AnaProtocol";
|
52
|
92
|
this.ShowIcon = false;
|
|
@@ -54,13 +94,17 @@
|
54
|
94
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
55
|
95
|
this.Text = "分析";
|
56
|
96
|
this.Load += new System.EventHandler(this.AnaProtocol_Load);
|
|
97
|
+ this.menuStrip1.ResumeLayout(false);
|
|
98
|
+ this.menuStrip1.PerformLayout();
|
57
|
99
|
this.ResumeLayout(false);
|
58
|
100
|
this.PerformLayout();
|
59
|
101
|
|
60
|
102
|
}
|
61
|
103
|
|
62
|
104
|
#endregion
|
63
|
|
-
|
64
|
|
- private System.Windows.Forms.Label labelSourceData;
|
|
105
|
+ private System.Windows.Forms.RichTextBox rtbCmd;
|
|
106
|
+ private System.Windows.Forms.MenuStrip menuStrip1;
|
|
107
|
+ private System.Windows.Forms.ToolStripMenuItem 没有ToolStripMenuItem;
|
|
108
|
+ private System.Windows.Forms.Button buttonCancle;
|
65
|
109
|
}
|
66
|
110
|
}
|