Form1.Designer.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. namespace WindowsFormsApp1
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.button1 = new System.Windows.Forms.Button();
  29. this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.listView1 = new System.Windows.Forms.ListView();
  32. this.button3 = new System.Windows.Forms.Button();
  33. this.textBox1 = new System.Windows.Forms.TextBox();
  34. this.SuspendLayout();
  35. //
  36. // button1
  37. //
  38. this.button1.Location = new System.Drawing.Point(382, 26);
  39. this.button1.Name = "button1";
  40. this.button1.Size = new System.Drawing.Size(75, 23);
  41. this.button1.TabIndex = 0;
  42. this.button1.Text = "开始";
  43. this.button1.UseVisualStyleBackColor = true;
  44. this.button1.Click += new System.EventHandler(this.button1_Click);
  45. //
  46. // openFileDialog1
  47. //
  48. this.openFileDialog1.FileName = "openFileDialog1";
  49. this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
  50. //
  51. // button2
  52. //
  53. this.button2.Location = new System.Drawing.Point(288, 26);
  54. this.button2.Name = "button2";
  55. this.button2.Size = new System.Drawing.Size(75, 23);
  56. this.button2.TabIndex = 1;
  57. this.button2.Text = "选择文件";
  58. this.button2.UseVisualStyleBackColor = true;
  59. this.button2.Click += new System.EventHandler(this.button2_Click);
  60. //
  61. // listView1
  62. //
  63. this.listView1.Location = new System.Drawing.Point(28, 55);
  64. this.listView1.Name = "listView1";
  65. this.listView1.Size = new System.Drawing.Size(452, 133);
  66. this.listView1.TabIndex = 2;
  67. this.listView1.UseCompatibleStateImageBehavior = false;
  68. this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
  69. //
  70. // button3
  71. //
  72. this.button3.Location = new System.Drawing.Point(35, 205);
  73. this.button3.Name = "button3";
  74. this.button3.Size = new System.Drawing.Size(121, 23);
  75. this.button3.TabIndex = 3;
  76. this.button3.Text = "选择存储文件夹";
  77. this.button3.UseVisualStyleBackColor = true;
  78. this.button3.Click += new System.EventHandler(this.button3_Click);
  79. //
  80. // textBox1
  81. //
  82. this.textBox1.Location = new System.Drawing.Point(35, 244);
  83. this.textBox1.Name = "textBox1";
  84. this.textBox1.Size = new System.Drawing.Size(352, 21);
  85. this.textBox1.TabIndex = 4;
  86. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  87. //
  88. // Form1
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.ClientSize = new System.Drawing.Size(538, 292);
  93. this.Controls.Add(this.textBox1);
  94. this.Controls.Add(this.button3);
  95. this.Controls.Add(this.listView1);
  96. this.Controls.Add(this.button2);
  97. this.Controls.Add(this.button1);
  98. this.Name = "Form1";
  99. this.Text = "Form1";
  100. this.Load += new System.EventHandler(this.Form1_Load);
  101. this.ResumeLayout(false);
  102. this.PerformLayout();
  103. }
  104. #endregion
  105. private System.Windows.Forms.Button button1; // 开始
  106. private System.Windows.Forms.OpenFileDialog openFileDialog1; // not use
  107. private System.Windows.Forms.Button button2; // 选择处理的文件
  108. private System.Windows.Forms.ListView listView1; // 处理文件显示的列表
  109. private System.Windows.Forms.Button button3; // 选择存储的文件夹
  110. private string[] fileNames; // 选择处理的文件
  111. private string AimFolder; // 存储的文件夹的值
  112. private System.Windows.Forms.TextBox textBox1; // 存储的文件夹的值显示框
  113. }
  114. }