using System.Drawing;
|
using System.Windows.Forms;
|
|
namespace EPACalcuTest
|
{
|
partial class Form1
|
{
|
/// <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()
|
{
|
button1 = new Button();
|
textBox1 = new TextBox();
|
label1 = new Label();
|
label2 = new Label();
|
button2 = new Button();
|
button3 = new Button();
|
statusStrip1 = new StatusStrip();
|
StatusLabel1 = new ToolStripStatusLabel();
|
label3 = new Label();
|
statusStrip1.SuspendLayout();
|
SuspendLayout();
|
//
|
// button1
|
//
|
button1.Location = new Point(445, 24);
|
button1.Name = "button1";
|
button1.Size = new Size(75, 23);
|
button1.TabIndex = 0;
|
button1.Text = "浏览";
|
button1.UseVisualStyleBackColor = true;
|
button1.Click += button1_Click;
|
//
|
// textBox1
|
//
|
textBox1.Location = new Point(87, 24);
|
textBox1.Name = "textBox1";
|
textBox1.Size = new Size(352, 23);
|
textBox1.TabIndex = 1;
|
//
|
// label1
|
//
|
label1.AutoSize = true;
|
label1.Location = new Point(31, 26);
|
label1.Name = "label1";
|
label1.Size = new Size(50, 17);
|
label1.TabIndex = 2;
|
label1.Text = "inp文件";
|
//
|
// label2
|
//
|
label2.AutoSize = true;
|
label2.Location = new Point(31, 67);
|
label2.Name = "label2";
|
label2.Size = new Size(82, 17);
|
label2.TabIndex = 3;
|
label2.Text = "构造Network";
|
//
|
// button2
|
//
|
button2.Location = new Point(445, 61);
|
button2.Name = "button2";
|
button2.Size = new Size(75, 23);
|
button2.TabIndex = 0;
|
button2.Text = "执行";
|
button2.UseVisualStyleBackColor = true;
|
button2.Click += button2_Click;
|
//
|
// button3
|
//
|
button3.Location = new Point(445, 99);
|
button3.Name = "button3";
|
button3.Size = new Size(75, 23);
|
button3.TabIndex = 0;
|
button3.Text = "执行";
|
button3.UseVisualStyleBackColor = true;
|
button3.Click += button3_Click;
|
//
|
// statusStrip1
|
//
|
statusStrip1.Items.AddRange(new ToolStripItem[] { StatusLabel1 });
|
statusStrip1.Location = new Point(0, 126);
|
statusStrip1.Name = "statusStrip1";
|
statusStrip1.Size = new Size(558, 22);
|
statusStrip1.TabIndex = 4;
|
statusStrip1.Text = "statusStrip1";
|
//
|
// StatusLabel1
|
//
|
StatusLabel1.Name = "StatusLabel1";
|
StatusLabel1.Size = new Size(32, 17);
|
StatusLabel1.Text = "状态";
|
//
|
// label3
|
//
|
label3.AutoSize = true;
|
label3.Location = new Point(31, 102);
|
label3.Name = "label3";
|
label3.Size = new Size(32, 17);
|
label3.TabIndex = 3;
|
label3.Text = "计算";
|
//
|
// Form1
|
//
|
AutoScaleDimensions = new SizeF(7F, 17F);
|
AutoScaleMode = AutoScaleMode.Font;
|
ClientSize = new Size(558, 148);
|
Controls.Add(statusStrip1);
|
Controls.Add(label3);
|
Controls.Add(label2);
|
Controls.Add(label1);
|
Controls.Add(textBox1);
|
Controls.Add(button3);
|
Controls.Add(button2);
|
Controls.Add(button1);
|
Name = "Form1";
|
Text = "Form1";
|
statusStrip1.ResumeLayout(false);
|
statusStrip1.PerformLayout();
|
ResumeLayout(false);
|
PerformLayout();
|
}
|
|
#endregion
|
|
private Button button1;
|
private TextBox textBox1;
|
private Label label1;
|
private Label label2;
|
private Button button2;
|
private Button button3;
|
private StatusStrip statusStrip1;
|
private ToolStripStatusLabel StatusLabel1;
|
private Label label3;
|
}
|
}
|