|
@@ -30,20 +30,19 @@
|
|
|
{
|
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ManageForm));
|
|
|
this.groupBox_File = new System.Windows.Forms.GroupBox();
|
|
|
+ this.button_SetPath = new System.Windows.Forms.Button();
|
|
|
+ this.textBox_LocalPath = new System.Windows.Forms.TextBox();
|
|
|
this.comboBox_Date = new System.Windows.Forms.ComboBox();
|
|
|
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
|
|
this.listBox_File = new System.Windows.Forms.ListBox();
|
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
|
this.button_Delete = new System.Windows.Forms.Button();
|
|
|
this.button_OpenFile = new System.Windows.Forms.Button();
|
|
|
- this.textBox_LocalPath = new System.Windows.Forms.TextBox();
|
|
|
- this.button_SetPath = new System.Windows.Forms.Button();
|
|
|
this.groupBox_File.SuspendLayout();
|
|
|
this.SuspendLayout();
|
|
|
//
|
|
|
// groupBox_File
|
|
|
//
|
|
|
- this.groupBox_File.Controls.Add(this.button_SetPath);
|
|
|
this.groupBox_File.Controls.Add(this.textBox_LocalPath);
|
|
|
this.groupBox_File.Controls.Add(this.comboBox_Date);
|
|
|
this.groupBox_File.Controls.Add(this.richTextBox1);
|
|
@@ -56,6 +55,28 @@
|
|
|
this.groupBox_File.TabStop = false;
|
|
|
this.groupBox_File.Text = "可用配置文件";
|
|
|
//
|
|
|
+ // button_SetPath
|
|
|
+ //
|
|
|
+ this.button_SetPath.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
|
|
|
+ this.button_SetPath.ForeColor = System.Drawing.Color.White;
|
|
|
+ this.button_SetPath.Location = new System.Drawing.Point(696, 28);
|
|
|
+ this.button_SetPath.Name = "button_SetPath";
|
|
|
+ this.button_SetPath.Size = new System.Drawing.Size(75, 50);
|
|
|
+ this.button_SetPath.TabIndex = 4;
|
|
|
+ this.button_SetPath.Text = "路径\r\n设置";
|
|
|
+ this.button_SetPath.UseVisualStyleBackColor = false;
|
|
|
+ this.button_SetPath.Click += new System.EventHandler(this.button_SetPath_Click);
|
|
|
+ //
|
|
|
+ // textBox_LocalPath
|
|
|
+ //
|
|
|
+ this.textBox_LocalPath.BackColor = System.Drawing.Color.White;
|
|
|
+ this.textBox_LocalPath.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
|
|
|
+ this.textBox_LocalPath.Location = new System.Drawing.Point(133, 28);
|
|
|
+ this.textBox_LocalPath.Name = "textBox_LocalPath";
|
|
|
+ this.textBox_LocalPath.Size = new System.Drawing.Size(530, 29);
|
|
|
+ this.textBox_LocalPath.TabIndex = 3;
|
|
|
+ this.textBox_LocalPath.Click += new System.EventHandler(this.textBox_LocalPath_Click);
|
|
|
+ //
|
|
|
// comboBox_Date
|
|
|
//
|
|
|
this.comboBox_Date.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
|
|
@@ -125,34 +146,13 @@
|
|
|
this.button_OpenFile.Visible = false;
|
|
|
this.button_OpenFile.Click += new System.EventHandler(this.button_OpenFile_Click);
|
|
|
//
|
|
|
- // textBox_LocalPath
|
|
|
- //
|
|
|
- this.textBox_LocalPath.BackColor = System.Drawing.Color.White;
|
|
|
- this.textBox_LocalPath.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
|
|
|
- this.textBox_LocalPath.Location = new System.Drawing.Point(133, 28);
|
|
|
- this.textBox_LocalPath.Name = "textBox_LocalPath";
|
|
|
- this.textBox_LocalPath.Size = new System.Drawing.Size(460, 29);
|
|
|
- this.textBox_LocalPath.TabIndex = 3;
|
|
|
- this.textBox_LocalPath.Click += new System.EventHandler(this.textBox_LocalPath_Click);
|
|
|
- //
|
|
|
- // button_SetPath
|
|
|
- //
|
|
|
- this.button_SetPath.BackColor = System.Drawing.SystemColors.Control;
|
|
|
- this.button_SetPath.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
|
|
|
- this.button_SetPath.Location = new System.Drawing.Point(599, 28);
|
|
|
- this.button_SetPath.Name = "button_SetPath";
|
|
|
- this.button_SetPath.Size = new System.Drawing.Size(64, 29);
|
|
|
- this.button_SetPath.TabIndex = 4;
|
|
|
- this.button_SetPath.Text = "设置";
|
|
|
- this.button_SetPath.UseVisualStyleBackColor = false;
|
|
|
- this.button_SetPath.Click += new System.EventHandler(this.button_SetPath_Click);
|
|
|
- //
|
|
|
// ManageForm
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
this.BackColor = System.Drawing.Color.White;
|
|
|
this.ClientSize = new System.Drawing.Size(784, 562);
|
|
|
+ this.Controls.Add(this.button_SetPath);
|
|
|
this.Controls.Add(this.label2);
|
|
|
this.Controls.Add(this.button_OpenFile);
|
|
|
this.Controls.Add(this.button_Delete);
|