namespace WindowsFormsApp1 { partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows 窗体设计器生成的代码 /// /// 设计器支持所需的方法 - 不要修改 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.button1 = new System.Windows.Forms.Button(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.button2 = new System.Windows.Forms.Button(); this.listView1 = new System.Windows.Forms.ListView(); this.button3 = new System.Windows.Forms.Button(); this.textBox1 = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // button1 // this.button1.Location = new System.Drawing.Point(382, 26); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 0; this.button1.Text = "开始"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // openFileDialog1 // this.openFileDialog1.FileName = "openFileDialog1"; this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk); // // button2 // this.button2.Location = new System.Drawing.Point(288, 26); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(75, 23); this.button2.TabIndex = 1; this.button2.Text = "选择文件"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.button2_Click); // // listView1 // this.listView1.Location = new System.Drawing.Point(28, 55); this.listView1.Name = "listView1"; this.listView1.Size = new System.Drawing.Size(452, 133); this.listView1.TabIndex = 2; this.listView1.UseCompatibleStateImageBehavior = false; this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged); // // button3 // this.button3.Location = new System.Drawing.Point(35, 205); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(121, 23); this.button3.TabIndex = 3; this.button3.Text = "选择存储文件夹"; this.button3.UseVisualStyleBackColor = true; this.button3.Click += new System.EventHandler(this.button3_Click); // // textBox1 // this.textBox1.Location = new System.Drawing.Point(35, 244); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(352, 21); this.textBox1.TabIndex = 4; this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(538, 292); this.Controls.Add(this.textBox1); this.Controls.Add(this.button3); this.Controls.Add(this.listView1); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Name = "Form1"; this.Text = "Form1"; this.Load += new System.EventHandler(this.Form1_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button button1; // 开始 private System.Windows.Forms.OpenFileDialog openFileDialog1; // not use private System.Windows.Forms.Button button2; // 选择处理的文件 private System.Windows.Forms.ListView listView1; // 处理文件显示的列表 private System.Windows.Forms.Button button3; // 选择存储的文件夹 private string[] fileNames; // 选择处理的文件 private string AimFolder; // 存储的文件夹的值 private System.Windows.Forms.TextBox textBox1; // 存储的文件夹的值显示框 } }