Form1.Designer.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. namespace DataTransmission
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. st_time = new DateTimePicker();
  29. end_time = new DateTimePicker();
  30. label1 = new Label();
  31. label2 = new Label();
  32. btn_tb = new Button();
  33. cb_order = new CheckBox();
  34. cb_zsk = new CheckBox();
  35. cb_user = new CheckBox();
  36. cb_jg = new CheckBox();
  37. cb_tz = new CheckBox();
  38. SuspendLayout();
  39. //
  40. // st_time
  41. //
  42. st_time.CustomFormat = "yyyy-MM-dd hh:mm:ss";
  43. st_time.Location = new Point(141, 56);
  44. st_time.Name = "st_time";
  45. st_time.Size = new Size(200, 23);
  46. st_time.TabIndex = 0;
  47. //
  48. // end_time
  49. //
  50. end_time.Location = new Point(141, 110);
  51. end_time.Name = "end_time";
  52. end_time.Size = new Size(200, 23);
  53. end_time.TabIndex = 1;
  54. //
  55. // label1
  56. //
  57. label1.AutoSize = true;
  58. label1.Location = new Point(67, 59);
  59. label1.Name = "label1";
  60. label1.Size = new Size(68, 17);
  61. label1.TabIndex = 2;
  62. label1.Text = "开始时间:";
  63. //
  64. // label2
  65. //
  66. label2.AutoSize = true;
  67. label2.Location = new Point(67, 113);
  68. label2.Name = "label2";
  69. label2.Size = new Size(68, 17);
  70. label2.TabIndex = 3;
  71. label2.Text = "结束时间:";
  72. //
  73. // btn_tb
  74. //
  75. btn_tb.Location = new Point(160, 266);
  76. btn_tb.Name = "btn_tb";
  77. btn_tb.Size = new Size(75, 23);
  78. btn_tb.TabIndex = 4;
  79. btn_tb.Text = "同步数据";
  80. btn_tb.UseVisualStyleBackColor = true;
  81. btn_tb.Click += btn_tb_Click;
  82. //
  83. // cb_order
  84. //
  85. cb_order.AutoSize = true;
  86. cb_order.Location = new Point(94, 163);
  87. cb_order.Name = "cb_order";
  88. cb_order.Size = new Size(75, 21);
  89. cb_order.TabIndex = 5;
  90. cb_order.Text = "同步工单";
  91. cb_order.UseVisualStyleBackColor = true;
  92. //
  93. // cb_zsk
  94. //
  95. cb_zsk.AutoSize = true;
  96. cb_zsk.Location = new Point(236, 163);
  97. cb_zsk.Name = "cb_zsk";
  98. cb_zsk.Size = new Size(87, 21);
  99. cb_zsk.TabIndex = 6;
  100. cb_zsk.Text = "同步知识库";
  101. cb_zsk.UseVisualStyleBackColor = true;
  102. //
  103. // cb_user
  104. //
  105. cb_user.AutoSize = true;
  106. cb_user.Location = new Point(93, 201);
  107. cb_user.Name = "cb_user";
  108. cb_user.Size = new Size(75, 21);
  109. cb_user.TabIndex = 7;
  110. cb_user.Text = "同步用户";
  111. cb_user.UseVisualStyleBackColor = true;
  112. //
  113. // cb_jg
  114. //
  115. cb_jg.AutoSize = true;
  116. cb_jg.Location = new Point(236, 201);
  117. cb_jg.Name = "cb_jg";
  118. cb_jg.Size = new Size(75, 21);
  119. cb_jg.TabIndex = 8;
  120. cb_jg.Text = "同步机构";
  121. cb_jg.UseVisualStyleBackColor = true;
  122. //
  123. // cb_tz
  124. //
  125. cb_tz.AutoSize = true;
  126. cb_tz.Location = new Point(93, 239);
  127. cb_tz.Name = "cb_tz";
  128. cb_tz.Size = new Size(75, 21);
  129. cb_tz.TabIndex = 9;
  130. cb_tz.Text = "同步通知";
  131. cb_tz.UseVisualStyleBackColor = true;
  132. //
  133. // Form1
  134. //
  135. AutoScaleDimensions = new SizeF(7F, 17F);
  136. AutoScaleMode = AutoScaleMode.Font;
  137. ClientSize = new Size(403, 301);
  138. Controls.Add(cb_tz);
  139. Controls.Add(cb_jg);
  140. Controls.Add(cb_user);
  141. Controls.Add(cb_zsk);
  142. Controls.Add(cb_order);
  143. Controls.Add(btn_tb);
  144. Controls.Add(label2);
  145. Controls.Add(label1);
  146. Controls.Add(end_time);
  147. Controls.Add(st_time);
  148. Name = "Form1";
  149. Text = "同步程序";
  150. ResumeLayout(false);
  151. PerformLayout();
  152. }
  153. #endregion
  154. private DateTimePicker st_time;
  155. private DateTimePicker end_time;
  156. private Label label1;
  157. private Label label2;
  158. private Button btn_tb;
  159. private CheckBox cb_order;
  160. private CheckBox cb_zsk;
  161. private CheckBox cb_user;
  162. private CheckBox cb_jg;
  163. private CheckBox cb_tz;
  164. }
  165. }