-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinePlanForm.Designer.cs
More file actions
175 lines (169 loc) · 9.35 KB
/
LinePlanForm.Designer.cs
File metadata and controls
175 lines (169 loc) · 9.35 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
namespace TrainTimetable
{
partial class LinePlanForm
{
/// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.绘制开行方案ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.绘制车站图ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.绘制上行开行方案ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.绘制下行开行方案ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.画图控件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.放大ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.缩小ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.导出图片ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.导出上行开行方案ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.导出下行开行方案ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.GripMargin = new System.Windows.Forms.Padding(2, 2, 0, 2);
this.menuStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.绘制开行方案ToolStripMenuItem,
this.画图控件ToolStripMenuItem,
this.导出图片ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(1547, 42);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// 绘制开行方案ToolStripMenuItem
//
this.绘制开行方案ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.绘制车站图ToolStripMenuItem,
this.绘制上行开行方案ToolStripMenuItem,
this.绘制下行开行方案ToolStripMenuItem});
this.绘制开行方案ToolStripMenuItem.Name = "绘制开行方案ToolStripMenuItem";
this.绘制开行方案ToolStripMenuItem.Size = new System.Drawing.Size(178, 38);
this.绘制开行方案ToolStripMenuItem.Text = "绘制开行方案";
this.绘制开行方案ToolStripMenuItem.Click += new System.EventHandler(this.绘制开行方案ToolStripMenuItem_Click);
//
// 绘制车站图ToolStripMenuItem
//
this.绘制车站图ToolStripMenuItem.Name = "绘制车站图ToolStripMenuItem";
this.绘制车站图ToolStripMenuItem.Size = new System.Drawing.Size(359, 44);
this.绘制车站图ToolStripMenuItem.Text = "绘制车站图";
//
// 绘制上行开行方案ToolStripMenuItem
//
this.绘制上行开行方案ToolStripMenuItem.Name = "绘制上行开行方案ToolStripMenuItem";
this.绘制上行开行方案ToolStripMenuItem.Size = new System.Drawing.Size(359, 44);
this.绘制上行开行方案ToolStripMenuItem.Text = "绘制上行开行方案";
//
// 绘制下行开行方案ToolStripMenuItem
//
this.绘制下行开行方案ToolStripMenuItem.Name = "绘制下行开行方案ToolStripMenuItem";
this.绘制下行开行方案ToolStripMenuItem.Size = new System.Drawing.Size(359, 44);
this.绘制下行开行方案ToolStripMenuItem.Text = "绘制下行开行方案";
//
// 画图控件ToolStripMenuItem
//
this.画图控件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.放大ToolStripMenuItem,
this.缩小ToolStripMenuItem});
this.画图控件ToolStripMenuItem.Name = "画图控件ToolStripMenuItem";
this.画图控件ToolStripMenuItem.Size = new System.Drawing.Size(130, 38);
this.画图控件ToolStripMenuItem.Text = "画图控件";
//
// 放大ToolStripMenuItem
//
this.放大ToolStripMenuItem.Name = "放大ToolStripMenuItem";
this.放大ToolStripMenuItem.Size = new System.Drawing.Size(195, 44);
this.放大ToolStripMenuItem.Text = "放大";
//
// 缩小ToolStripMenuItem
//
this.缩小ToolStripMenuItem.Name = "缩小ToolStripMenuItem";
this.缩小ToolStripMenuItem.Size = new System.Drawing.Size(195, 44);
this.缩小ToolStripMenuItem.Text = "缩小";
//
// 导出图片ToolStripMenuItem
//
this.导出图片ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.导出上行开行方案ToolStripMenuItem,
this.导出下行开行方案ToolStripMenuItem});
this.导出图片ToolStripMenuItem.Name = "导出图片ToolStripMenuItem";
this.导出图片ToolStripMenuItem.Size = new System.Drawing.Size(130, 38);
this.导出图片ToolStripMenuItem.Text = "导出图片";
//
// 导出上行开行方案ToolStripMenuItem
//
this.导出上行开行方案ToolStripMenuItem.Name = "导出上行开行方案ToolStripMenuItem";
this.导出上行开行方案ToolStripMenuItem.Size = new System.Drawing.Size(339, 44);
this.导出上行开行方案ToolStripMenuItem.Text = "导出上行开行方案";
//
// 导出下行开行方案ToolStripMenuItem
//
this.导出下行开行方案ToolStripMenuItem.Name = "导出下行开行方案ToolStripMenuItem";
this.导出下行开行方案ToolStripMenuItem.Size = new System.Drawing.Size(339, 44);
this.导出下行开行方案ToolStripMenuItem.Text = "导出下行开行方案";
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(13, 43);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(1522, 833);
this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false;
//
// LinePlanForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1547, 888);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "LinePlanForm";
this.Text = "高速铁路开行方案";
this.Load += new System.EventHandler(this.LinePlanForm_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem 绘制开行方案ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 画图控件ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 导出图片ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 放大ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 缩小ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 导出上行开行方案ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 导出下行开行方案ToolStripMenuItem;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.ToolStripMenuItem 绘制车站图ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 绘制上行开行方案ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 绘制下行开行方案ToolStripMenuItem;
}
}