frmMerageExcel.Designer.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. 
  2. namespace wispro.sp.winform
  3. {
  4. partial class frmMerageExcel
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.lblSaveFilePath = new System.Windows.Forms.Label();
  30. this.txtSaveFilePath = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.btnSelectSavePath = new System.Windows.Forms.Button();
  33. this.btnAdd = new System.Windows.Forms.Button();
  34. this.btnBeginMerage = new System.Windows.Forms.Button();
  35. this.btnCancel = new System.Windows.Forms.Button();
  36. this.lstFiles = new System.Windows.Forms.CheckedListBox();
  37. this.SuspendLayout();
  38. //
  39. // lblSaveFilePath
  40. //
  41. this.lblSaveFilePath.AutoSize = true;
  42. this.lblSaveFilePath.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  43. this.lblSaveFilePath.Location = new System.Drawing.Point(56, 64);
  44. this.lblSaveFilePath.Name = "lblSaveFilePath";
  45. this.lblSaveFilePath.Size = new System.Drawing.Size(208, 21);
  46. this.lblSaveFilePath.TabIndex = 0;
  47. this.lblSaveFilePath.Text = "合并文件保存路径:";
  48. //
  49. // txtSaveFilePath
  50. //
  51. this.txtSaveFilePath.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  52. this.txtSaveFilePath.Location = new System.Drawing.Point(270, 55);
  53. this.txtSaveFilePath.Name = "txtSaveFilePath";
  54. this.txtSaveFilePath.Size = new System.Drawing.Size(698, 39);
  55. this.txtSaveFilePath.TabIndex = 1;
  56. //
  57. // label1
  58. //
  59. this.label1.AutoSize = true;
  60. this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  61. this.label1.Location = new System.Drawing.Point(56, 131);
  62. this.label1.Name = "label1";
  63. this.label1.Size = new System.Drawing.Size(164, 21);
  64. this.label1.TabIndex = 0;
  65. this.label1.Text = "合共文件清单:";
  66. this.label1.Click += new System.EventHandler(this.label1_Click);
  67. //
  68. // btnSelectSavePath
  69. //
  70. this.btnSelectSavePath.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  71. this.btnSelectSavePath.Location = new System.Drawing.Point(974, 53);
  72. this.btnSelectSavePath.Name = "btnSelectSavePath";
  73. this.btnSelectSavePath.Size = new System.Drawing.Size(123, 42);
  74. this.btnSelectSavePath.TabIndex = 3;
  75. this.btnSelectSavePath.Text = "选择";
  76. this.btnSelectSavePath.UseVisualStyleBackColor = true;
  77. this.btnSelectSavePath.Click += new System.EventHandler(this.btnSelectSavePath_Click);
  78. //
  79. // btnAdd
  80. //
  81. this.btnAdd.Location = new System.Drawing.Point(56, 567);
  82. this.btnAdd.Name = "btnAdd";
  83. this.btnAdd.Size = new System.Drawing.Size(158, 58);
  84. this.btnAdd.TabIndex = 5;
  85. this.btnAdd.Text = "添加文件";
  86. this.btnAdd.UseVisualStyleBackColor = true;
  87. this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
  88. //
  89. // btnBeginMerage
  90. //
  91. this.btnBeginMerage.Location = new System.Drawing.Point(926, 567);
  92. this.btnBeginMerage.Name = "btnBeginMerage";
  93. this.btnBeginMerage.Size = new System.Drawing.Size(171, 58);
  94. this.btnBeginMerage.TabIndex = 6;
  95. this.btnBeginMerage.Text = "开始合并";
  96. this.btnBeginMerage.UseVisualStyleBackColor = true;
  97. this.btnBeginMerage.Click += new System.EventHandler(this.btnBeginMerage_Click);
  98. //
  99. // btnCancel
  100. //
  101. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  102. this.btnCancel.Location = new System.Drawing.Point(751, 567);
  103. this.btnCancel.Name = "btnCancel";
  104. this.btnCancel.Size = new System.Drawing.Size(155, 58);
  105. this.btnCancel.TabIndex = 6;
  106. this.btnCancel.Text = "取消";
  107. this.btnCancel.UseVisualStyleBackColor = true;
  108. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  109. //
  110. // lstFiles
  111. //
  112. this.lstFiles.FormattingEnabled = true;
  113. this.lstFiles.Location = new System.Drawing.Point(60, 172);
  114. this.lstFiles.Name = "lstFiles";
  115. this.lstFiles.Size = new System.Drawing.Size(1037, 379);
  116. this.lstFiles.TabIndex = 7;
  117. //
  118. // frmMerageExcel
  119. //
  120. this.AcceptButton = this.btnBeginMerage;
  121. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  122. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  123. this.CancelButton = this.btnCancel;
  124. this.ClientSize = new System.Drawing.Size(1151, 676);
  125. this.Controls.Add(this.lstFiles);
  126. this.Controls.Add(this.btnCancel);
  127. this.Controls.Add(this.btnBeginMerage);
  128. this.Controls.Add(this.btnAdd);
  129. this.Controls.Add(this.btnSelectSavePath);
  130. this.Controls.Add(this.txtSaveFilePath);
  131. this.Controls.Add(this.label1);
  132. this.Controls.Add(this.lblSaveFilePath);
  133. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  134. this.Name = "frmMerageExcel";
  135. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  136. this.Text = "合并Excel文件";
  137. this.ResumeLayout(false);
  138. this.PerformLayout();
  139. }
  140. #endregion
  141. private System.Windows.Forms.Label lblSaveFilePath;
  142. private System.Windows.Forms.TextBox txtSaveFilePath;
  143. private System.Windows.Forms.Label label1;
  144. private System.Windows.Forms.Button btnSelectSavePath;
  145. private System.Windows.Forms.Button btnAdd;
  146. private System.Windows.Forms.Button btnBeginMerage;
  147. private System.Windows.Forms.Button btnCancel;
  148. private System.Windows.Forms.CheckedListBox lstFiles;
  149. }
  150. }