-
Notifications
You must be signed in to change notification settings - Fork 0
/
OSPFEditor.Designer.cs
116 lines (108 loc) · 4.84 KB
/
OSPFEditor.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
namespace OSPF
{
partial class OSPFEditor
{
/// <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 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OSPFEditor));
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.tscbSpeed = new System.Windows.Forms.ToolStripComboBox();
this.tsbDeployLine = new System.Windows.Forms.ToolStripButton();
this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
this.toolStripContainer1.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStripContainer1
//
//
// toolStripContainer1.ContentPanel
//
this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(692, 495);
this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
this.toolStripContainer1.Name = "toolStripContainer1";
this.toolStripContainer1.Size = new System.Drawing.Size(692, 520);
this.toolStripContainer1.TabIndex = 0;
this.toolStripContainer1.Text = "toolStripContainer1";
//
// toolStripContainer1.TopToolStripPanel
//
this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip1);
//
// toolStrip1
//
this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tscbSpeed,
this.tsbDeployLine});
this.toolStrip1.Location = new System.Drawing.Point(3, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(194, 25);
this.toolStrip1.TabIndex = 1;
//
// tscbSpeed
//
this.tscbSpeed.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.tscbSpeed.Items.AddRange(new object[] {
"Ethernet",
"FastEthernet",
"GigabitEthernet",
"TenGigabitEthernet"});
this.tscbSpeed.Name = "tscbSpeed";
this.tscbSpeed.Size = new System.Drawing.Size(121, 25);
//
// tsbDeployLine
//
this.tsbDeployLine.Image = ((System.Drawing.Image)(resources.GetObject("tsbDeployLine.Image")));
this.tsbDeployLine.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbDeployLine.Name = "tsbDeployLine";
this.tsbDeployLine.Size = new System.Drawing.Size(61, 22);
this.tsbDeployLine.Text = "拉网线";
//
// OSPFEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(692, 520);
this.Controls.Add(this.toolStripContainer1);
this.Name = "OSPFEditor";
this.Text = "OSPF Emulator";
this.Load += new System.EventHandler(this.OSPFEditor_Load);
this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
this.toolStripContainer1.TopToolStripPanel.PerformLayout();
this.toolStripContainer1.ResumeLayout(false);
this.toolStripContainer1.PerformLayout();
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ToolStripContainer toolStripContainer1;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripComboBox tscbSpeed;
private System.Windows.Forms.ToolStripButton tsbDeployLine;
}
}