frmMerageExcel.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. 
  2. namespace wispro.sp.winClient
  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.label1 = new System.Windows.Forms.Label();
  30. this.txtSaveFilePath = new System.Windows.Forms.TextBox();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.lstFiles = new System.Windows.Forms.ListBox();
  33. this.button2 = new System.Windows.Forms.Button();
  34. this.button3 = new System.Windows.Forms.Button();
  35. this.button4 = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.Location = new System.Drawing.Point(48, 70);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(100, 24);
  44. this.label1.TabIndex = 0;
  45. this.label1.Text = "保存文件:";
  46. this.label1.Click += new System.EventHandler(this.label1_Click);
  47. //
  48. // txtSaveFilePath
  49. //
  50. this.txtSaveFilePath.Location = new System.Drawing.Point(154, 67);
  51. this.txtSaveFilePath.Name = "txtSaveFilePath";
  52. this.txtSaveFilePath.Size = new System.Drawing.Size(661, 30);
  53. this.txtSaveFilePath.TabIndex = 1;
  54. //
  55. // button1
  56. //
  57. this.button1.Location = new System.Drawing.Point(822, 65);
  58. this.button1.Name = "button1";
  59. this.button1.Size = new System.Drawing.Size(112, 34);
  60. this.button1.TabIndex = 2;
  61. this.button1.Text = "浏览";
  62. this.button1.UseVisualStyleBackColor = true;
  63. this.button1.Click += new System.EventHandler(this.button1_Click);
  64. //
  65. // lstFiles
  66. //
  67. this.lstFiles.FormattingEnabled = true;
  68. this.lstFiles.ItemHeight = 24;
  69. this.lstFiles.Location = new System.Drawing.Point(48, 134);
  70. this.lstFiles.Name = "lstFiles";
  71. this.lstFiles.Size = new System.Drawing.Size(886, 484);
  72. this.lstFiles.TabIndex = 3;
  73. //
  74. // button2
  75. //
  76. this.button2.Location = new System.Drawing.Point(48, 653);
  77. this.button2.Name = "button2";
  78. this.button2.Size = new System.Drawing.Size(160, 50);
  79. this.button2.TabIndex = 4;
  80. this.button2.Text = "添加文件";
  81. this.button2.UseVisualStyleBackColor = true;
  82. this.button2.Click += new System.EventHandler(this.button2_Click);
  83. //
  84. // button3
  85. //
  86. this.button3.Location = new System.Drawing.Point(589, 653);
  87. this.button3.Name = "button3";
  88. this.button3.Size = new System.Drawing.Size(160, 50);
  89. this.button3.TabIndex = 4;
  90. this.button3.Text = "取消";
  91. this.button3.UseVisualStyleBackColor = true;
  92. this.button3.Click += new System.EventHandler(this.button3_Click);
  93. //
  94. // button4
  95. //
  96. this.button4.Location = new System.Drawing.Point(774, 653);
  97. this.button4.Name = "button4";
  98. this.button4.Size = new System.Drawing.Size(160, 50);
  99. this.button4.TabIndex = 4;
  100. this.button4.Text = "开始合并";
  101. this.button4.UseVisualStyleBackColor = true;
  102. this.button4.Click += new System.EventHandler(this.button4_Click);
  103. //
  104. // frmMerageExcel
  105. //
  106. this.AcceptButton = this.button4;
  107. this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
  108. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  109. this.CancelButton = this.button3;
  110. this.ClientSize = new System.Drawing.Size(991, 746);
  111. this.Controls.Add(this.button4);
  112. this.Controls.Add(this.button3);
  113. this.Controls.Add(this.button2);
  114. this.Controls.Add(this.lstFiles);
  115. this.Controls.Add(this.button1);
  116. this.Controls.Add(this.txtSaveFilePath);
  117. this.Controls.Add(this.label1);
  118. this.Name = "frmMerageExcel";
  119. this.Text = "frmMerageExcel";
  120. this.ResumeLayout(false);
  121. this.PerformLayout();
  122. }
  123. #endregion
  124. private System.Windows.Forms.Label label1;
  125. private System.Windows.Forms.TextBox txtSaveFilePath;
  126. private System.Windows.Forms.Button button1;
  127. private System.Windows.Forms.ListBox lstFiles;
  128. private System.Windows.Forms.Button button2;
  129. private System.Windows.Forms.Button button3;
  130. private System.Windows.Forms.Button button4;
  131. }
  132. }