Form1.Designer.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. namespace WorkOrderControl
  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.components = new System.ComponentModel.Container();
  29. this.bt_begin = new System.Windows.Forms.Button();
  30. this.tb_url = new System.Windows.Forms.TextBox();
  31. this.dt_begin = new System.Windows.Forms.DateTimePicker();
  32. this.dt_end = new System.Windows.Forms.DateTimePicker();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.tb_token = new System.Windows.Forms.TextBox();
  36. this.label3 = new System.Windows.Forms.Label();
  37. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  38. this.label4 = new System.Windows.Forms.Label();
  39. this.button1 = new System.Windows.Forms.Button();
  40. this.timer1 = new System.Windows.Forms.Timer(this.components);
  41. this.SuspendLayout();
  42. //
  43. // bt_begin
  44. //
  45. this.bt_begin.Location = new System.Drawing.Point(487, 238);
  46. this.bt_begin.Name = "bt_begin";
  47. this.bt_begin.Size = new System.Drawing.Size(124, 41);
  48. this.bt_begin.TabIndex = 0;
  49. this.bt_begin.Text = "开始";
  50. this.bt_begin.UseVisualStyleBackColor = true;
  51. this.bt_begin.Click += new System.EventHandler(this.bt_begin_Click);
  52. //
  53. // tb_url
  54. //
  55. this.tb_url.Location = new System.Drawing.Point(111, 32);
  56. this.tb_url.Name = "tb_url";
  57. this.tb_url.Size = new System.Drawing.Size(500, 25);
  58. this.tb_url.TabIndex = 1;
  59. //
  60. // dt_begin
  61. //
  62. this.dt_begin.CustomFormat = "yyyy-M-d";
  63. this.dt_begin.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  64. this.dt_begin.Location = new System.Drawing.Point(111, 95);
  65. this.dt_begin.Name = "dt_begin";
  66. this.dt_begin.Size = new System.Drawing.Size(200, 25);
  67. this.dt_begin.TabIndex = 2;
  68. //
  69. // dt_end
  70. //
  71. this.dt_end.CustomFormat = "yyyy-M-d";
  72. this.dt_end.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  73. this.dt_end.Location = new System.Drawing.Point(411, 95);
  74. this.dt_end.Name = "dt_end";
  75. this.dt_end.Size = new System.Drawing.Size(200, 25);
  76. this.dt_end.TabIndex = 3;
  77. //
  78. // label1
  79. //
  80. this.label1.AutoSize = true;
  81. this.label1.Location = new System.Drawing.Point(34, 98);
  82. this.label1.Name = "label1";
  83. this.label1.Size = new System.Drawing.Size(67, 15);
  84. this.label1.TabIndex = 4;
  85. this.label1.Text = "起始时间";
  86. //
  87. // label2
  88. //
  89. this.label2.AutoSize = true;
  90. this.label2.Location = new System.Drawing.Point(338, 102);
  91. this.label2.Name = "label2";
  92. this.label2.Size = new System.Drawing.Size(67, 15);
  93. this.label2.TabIndex = 5;
  94. this.label2.Text = "结束时间";
  95. //
  96. // tb_token
  97. //
  98. this.tb_token.Location = new System.Drawing.Point(111, 157);
  99. this.tb_token.Name = "tb_token";
  100. this.tb_token.Size = new System.Drawing.Size(500, 25);
  101. this.tb_token.TabIndex = 6;
  102. //
  103. // label3
  104. //
  105. this.label3.AutoSize = true;
  106. this.label3.Location = new System.Drawing.Point(38, 160);
  107. this.label3.Name = "label3";
  108. this.label3.Size = new System.Drawing.Size(47, 15);
  109. this.label3.TabIndex = 7;
  110. this.label3.Text = "token";
  111. //
  112. // statusStrip1
  113. //
  114. this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  115. this.statusStrip1.Location = new System.Drawing.Point(0, 302);
  116. this.statusStrip1.Name = "statusStrip1";
  117. this.statusStrip1.Size = new System.Drawing.Size(665, 22);
  118. this.statusStrip1.TabIndex = 8;
  119. this.statusStrip1.Text = "statusStrip1";
  120. //
  121. // label4
  122. //
  123. this.label4.AutoSize = true;
  124. this.label4.Location = new System.Drawing.Point(34, 35);
  125. this.label4.Name = "label4";
  126. this.label4.Size = new System.Drawing.Size(31, 15);
  127. this.label4.TabIndex = 9;
  128. this.label4.Text = "URL";
  129. //
  130. // button1
  131. //
  132. this.button1.Location = new System.Drawing.Point(174, 238);
  133. this.button1.Name = "button1";
  134. this.button1.Size = new System.Drawing.Size(124, 41);
  135. this.button1.TabIndex = 10;
  136. this.button1.Text = "testtoken";
  137. this.button1.UseVisualStyleBackColor = true;
  138. this.button1.Visible = false;
  139. this.button1.Click += new System.EventHandler(this.button1_Click);
  140. //
  141. // timer1
  142. //
  143. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  144. //
  145. // Form1
  146. //
  147. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  148. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  149. this.ClientSize = new System.Drawing.Size(665, 324);
  150. this.Controls.Add(this.button1);
  151. this.Controls.Add(this.label4);
  152. this.Controls.Add(this.statusStrip1);
  153. this.Controls.Add(this.label3);
  154. this.Controls.Add(this.tb_token);
  155. this.Controls.Add(this.label2);
  156. this.Controls.Add(this.label1);
  157. this.Controls.Add(this.dt_end);
  158. this.Controls.Add(this.dt_begin);
  159. this.Controls.Add(this.tb_url);
  160. this.Controls.Add(this.bt_begin);
  161. this.Name = "Form1";
  162. this.Text = "派工数据采集";
  163. this.Load += new System.EventHandler(this.Form1_Load);
  164. this.ResumeLayout(false);
  165. this.PerformLayout();
  166. }
  167. #endregion
  168. private System.Windows.Forms.Button bt_begin;
  169. private System.Windows.Forms.TextBox tb_url;
  170. private System.Windows.Forms.DateTimePicker dt_begin;
  171. private System.Windows.Forms.DateTimePicker dt_end;
  172. private System.Windows.Forms.Label label1;
  173. private System.Windows.Forms.Label label2;
  174. private System.Windows.Forms.TextBox tb_token;
  175. private System.Windows.Forms.Label label3;
  176. private System.Windows.Forms.StatusStrip statusStrip1;
  177. private System.Windows.Forms.Label label4;
  178. private System.Windows.Forms.Button button1;
  179. private System.Windows.Forms.Timer timer1;
  180. }
  181. }