266 lines
11 KiB
C#
266 lines
11 KiB
C#
namespace NBConfigBuilder
|
|
{
|
|
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()
|
|
{
|
|
textBoxExcelPath = new TextBox();
|
|
buttonSelectExcelPath = new Button();
|
|
label1 = new Label();
|
|
textBoxClientGenPath = new TextBox();
|
|
buttonSelectClientPath = new Button();
|
|
checkBoxGenClient = new CheckBox();
|
|
label2 = new Label();
|
|
textBoxServerGenPath = new TextBox();
|
|
label3 = new Label();
|
|
checkBoxGenServer = new CheckBox();
|
|
buttonSelectServerPath = new Button();
|
|
buttonRun = new Button();
|
|
textBoxClientGenJsonPath = new TextBox();
|
|
label4 = new Label();
|
|
buttonSelectClientJsonPath = new Button();
|
|
textBoxServerGenJsonPath = new TextBox();
|
|
label5 = new Label();
|
|
buttonSelectServerJsonPath = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// textBoxExcelPath
|
|
//
|
|
textBoxExcelPath.Location = new Point(84, 13);
|
|
textBoxExcelPath.Name = "textBoxExcelPath";
|
|
textBoxExcelPath.Size = new Size(322, 23);
|
|
textBoxExcelPath.TabIndex = 0;
|
|
//
|
|
// buttonSelectExcelPath
|
|
//
|
|
buttonSelectExcelPath.Location = new Point(412, 13);
|
|
buttonSelectExcelPath.Name = "buttonSelectExcelPath";
|
|
buttonSelectExcelPath.Size = new Size(75, 23);
|
|
buttonSelectExcelPath.TabIndex = 1;
|
|
buttonSelectExcelPath.Text = "选择";
|
|
buttonSelectExcelPath.UseVisualStyleBackColor = true;
|
|
buttonSelectExcelPath.Click += buttonSelectExcelPath_Click;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(7, 17);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(68, 17);
|
|
label1.TabIndex = 2;
|
|
label1.Text = "配置表路径";
|
|
//
|
|
// textBoxClientGenPath
|
|
//
|
|
textBoxClientGenPath.Location = new Point(84, 42);
|
|
textBoxClientGenPath.Name = "textBoxClientGenPath";
|
|
textBoxClientGenPath.Size = new Size(318, 23);
|
|
textBoxClientGenPath.TabIndex = 3;
|
|
//
|
|
// buttonSelectClientPath
|
|
//
|
|
buttonSelectClientPath.Location = new Point(412, 42);
|
|
buttonSelectClientPath.Name = "buttonSelectClientPath";
|
|
buttonSelectClientPath.Size = new Size(75, 23);
|
|
buttonSelectClientPath.TabIndex = 4;
|
|
buttonSelectClientPath.Text = "选择";
|
|
buttonSelectClientPath.UseVisualStyleBackColor = true;
|
|
buttonSelectClientPath.Click += buttonSelectClientPath_Click;
|
|
//
|
|
// checkBoxGenClient
|
|
//
|
|
checkBoxGenClient.AutoSize = true;
|
|
checkBoxGenClient.Checked = true;
|
|
checkBoxGenClient.CheckState = CheckState.Checked;
|
|
checkBoxGenClient.Location = new Point(495, 44);
|
|
checkBoxGenClient.Name = "checkBoxGenClient";
|
|
checkBoxGenClient.Size = new Size(87, 21);
|
|
checkBoxGenClient.TabIndex = 5;
|
|
checkBoxGenClient.Text = "生产服务端";
|
|
checkBoxGenClient.UseVisualStyleBackColor = true;
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(7, 47);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(68, 17);
|
|
label2.TabIndex = 6;
|
|
label2.Text = "客户端代码";
|
|
//
|
|
// textBoxServerGenPath
|
|
//
|
|
textBoxServerGenPath.Location = new Point(84, 100);
|
|
textBoxServerGenPath.Name = "textBoxServerGenPath";
|
|
textBoxServerGenPath.Size = new Size(318, 23);
|
|
textBoxServerGenPath.TabIndex = 7;
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(7, 103);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(68, 17);
|
|
label3.TabIndex = 8;
|
|
label3.Text = "服务端代码";
|
|
//
|
|
// checkBoxGenServer
|
|
//
|
|
checkBoxGenServer.AutoSize = true;
|
|
checkBoxGenServer.Checked = true;
|
|
checkBoxGenServer.CheckState = CheckState.Checked;
|
|
checkBoxGenServer.Location = new Point(495, 16);
|
|
checkBoxGenServer.Name = "checkBoxGenServer";
|
|
checkBoxGenServer.Size = new Size(87, 21);
|
|
checkBoxGenServer.TabIndex = 9;
|
|
checkBoxGenServer.Text = "生产客户端";
|
|
checkBoxGenServer.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonSelectServerPath
|
|
//
|
|
buttonSelectServerPath.Location = new Point(412, 100);
|
|
buttonSelectServerPath.Name = "buttonSelectServerPath";
|
|
buttonSelectServerPath.Size = new Size(75, 23);
|
|
buttonSelectServerPath.TabIndex = 10;
|
|
buttonSelectServerPath.Text = "选择";
|
|
buttonSelectServerPath.UseVisualStyleBackColor = true;
|
|
buttonSelectServerPath.Click += buttonSelectServerPath_Click;
|
|
//
|
|
// buttonRun
|
|
//
|
|
buttonRun.Location = new Point(495, 71);
|
|
buttonRun.Name = "buttonRun";
|
|
buttonRun.Size = new Size(80, 81);
|
|
buttonRun.TabIndex = 12;
|
|
buttonRun.Text = "执行";
|
|
buttonRun.UseVisualStyleBackColor = true;
|
|
buttonRun.Click += buttonRun_Click;
|
|
//
|
|
// textBoxClientGenJsonPath
|
|
//
|
|
textBoxClientGenJsonPath.Location = new Point(84, 71);
|
|
textBoxClientGenJsonPath.Name = "textBoxClientGenJsonPath";
|
|
textBoxClientGenJsonPath.Size = new Size(318, 23);
|
|
textBoxClientGenJsonPath.TabIndex = 13;
|
|
//
|
|
// label4
|
|
//
|
|
label4.AutoSize = true;
|
|
label4.Location = new Point(7, 77);
|
|
label4.Name = "label4";
|
|
label4.Size = new Size(68, 17);
|
|
label4.TabIndex = 14;
|
|
label4.Text = "客户端配置";
|
|
//
|
|
// buttonSelectClientJsonPath
|
|
//
|
|
buttonSelectClientJsonPath.Location = new Point(412, 71);
|
|
buttonSelectClientJsonPath.Name = "buttonSelectClientJsonPath";
|
|
buttonSelectClientJsonPath.Size = new Size(75, 23);
|
|
buttonSelectClientJsonPath.TabIndex = 15;
|
|
buttonSelectClientJsonPath.Text = "选择";
|
|
buttonSelectClientJsonPath.UseVisualStyleBackColor = true;
|
|
buttonSelectClientJsonPath.Click += buttonSelectClientJsonPath_Click;
|
|
//
|
|
// textBoxServerGenJsonPath
|
|
//
|
|
textBoxServerGenJsonPath.Location = new Point(85, 129);
|
|
textBoxServerGenJsonPath.Name = "textBoxServerGenJsonPath";
|
|
textBoxServerGenJsonPath.Size = new Size(317, 23);
|
|
textBoxServerGenJsonPath.TabIndex = 16;
|
|
//
|
|
// label5
|
|
//
|
|
label5.AutoSize = true;
|
|
label5.Location = new Point(7, 132);
|
|
label5.Name = "label5";
|
|
label5.Size = new Size(68, 17);
|
|
label5.TabIndex = 17;
|
|
label5.Text = "服务端配置";
|
|
//
|
|
// buttonSelectServerJsonPath
|
|
//
|
|
buttonSelectServerJsonPath.Location = new Point(412, 129);
|
|
buttonSelectServerJsonPath.Name = "buttonSelectServerJsonPath";
|
|
buttonSelectServerJsonPath.Size = new Size(75, 23);
|
|
buttonSelectServerJsonPath.TabIndex = 18;
|
|
buttonSelectServerJsonPath.Text = "选择";
|
|
buttonSelectServerJsonPath.UseVisualStyleBackColor = true;
|
|
buttonSelectServerJsonPath.Click += buttonSelectServerJsonPath_Click;
|
|
//
|
|
// Form1
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 17F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(585, 161);
|
|
Controls.Add(buttonSelectServerJsonPath);
|
|
Controls.Add(label5);
|
|
Controls.Add(textBoxServerGenJsonPath);
|
|
Controls.Add(buttonSelectClientJsonPath);
|
|
Controls.Add(label4);
|
|
Controls.Add(textBoxClientGenJsonPath);
|
|
Controls.Add(buttonRun);
|
|
Controls.Add(buttonSelectServerPath);
|
|
Controls.Add(checkBoxGenServer);
|
|
Controls.Add(label3);
|
|
Controls.Add(textBoxServerGenPath);
|
|
Controls.Add(label2);
|
|
Controls.Add(checkBoxGenClient);
|
|
Controls.Add(buttonSelectClientPath);
|
|
Controls.Add(textBoxClientGenPath);
|
|
Controls.Add(label1);
|
|
Controls.Add(buttonSelectExcelPath);
|
|
Controls.Add(textBoxExcelPath);
|
|
Name = "Form1";
|
|
Text = "配置生成导出";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBoxExcelPath;
|
|
private Button buttonSelectExcelPath;
|
|
private Label label1;
|
|
private TextBox textBoxClientGenPath;
|
|
private Button buttonSelectClientPath;
|
|
private CheckBox checkBoxGenClient;
|
|
private Label label2;
|
|
private TextBox textBoxServerGenPath;
|
|
private Label label3;
|
|
private CheckBox checkBoxGenServer;
|
|
private Button buttonSelectServerPath;
|
|
private Button buttonRun;
|
|
private TextBox textBoxClientGenJsonPath;
|
|
private Label label4;
|
|
private Button buttonSelectClientJsonPath;
|
|
private TextBox textBoxServerGenJsonPath;
|
|
private Label label5;
|
|
private Button buttonSelectServerJsonPath;
|
|
}
|
|
}
|