Form1.Designer.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. SuspendLayout();
  38. //
  39. // st_time
  40. //
  41. st_time.CustomFormat = "yyyy-MM-dd hh:mm:ss";
  42. st_time.Location = new Point(141, 56);
  43. st_time.Name = "st_time";
  44. st_time.Size = new Size(200, 23);
  45. st_time.TabIndex = 0;
  46. //
  47. // end_time
  48. //
  49. end_time.Location = new Point(141, 110);
  50. end_time.Name = "end_time";
  51. end_time.Size = new Size(200, 23);
  52. end_time.TabIndex = 1;
  53. //
  54. // label1
  55. //
  56. label1.AutoSize = true;
  57. label1.Location = new Point(67, 59);
  58. label1.Name = "label1";
  59. label1.Size = new Size(68, 17);
  60. label1.TabIndex = 2;
  61. label1.Text = "开始时间:";
  62. //
  63. // label2
  64. //
  65. label2.AutoSize = true;
  66. label2.Location = new Point(67, 113);
  67. label2.Name = "label2";
  68. label2.Size = new Size(68, 17);
  69. label2.TabIndex = 3;
  70. label2.Text = "结束时间:";
  71. //
  72. // btn_tb
  73. //
  74. btn_tb.Location = new Point(161, 246);
  75. btn_tb.Name = "btn_tb";
  76. btn_tb.Size = new Size(75, 23);
  77. btn_tb.TabIndex = 4;
  78. btn_tb.Text = "同步数据";
  79. btn_tb.UseVisualStyleBackColor = true;
  80. btn_tb.Click += btn_tb_Click;
  81. //
  82. // cb_order
  83. //
  84. cb_order.AutoSize = true;
  85. cb_order.Location = new Point(94, 163);
  86. cb_order.Name = "cb_order";
  87. cb_order.Size = new Size(75, 21);
  88. cb_order.TabIndex = 5;
  89. cb_order.Text = "同步工单";
  90. cb_order.UseVisualStyleBackColor = true;
  91. //
  92. // cb_zsk
  93. //
  94. cb_zsk.AutoSize = true;
  95. cb_zsk.Location = new Point(236, 163);
  96. cb_zsk.Name = "cb_zsk";
  97. cb_zsk.Size = new Size(87, 21);
  98. cb_zsk.TabIndex = 6;
  99. cb_zsk.Text = "同步知识库";
  100. cb_zsk.UseVisualStyleBackColor = true;
  101. //
  102. // cb_user
  103. //
  104. cb_user.AutoSize = true;
  105. cb_user.Location = new Point(93, 201);
  106. cb_user.Name = "cb_user";
  107. cb_user.Size = new Size(75, 21);
  108. cb_user.TabIndex = 7;
  109. cb_user.Text = "同步用户";
  110. cb_user.UseVisualStyleBackColor = true;
  111. //
  112. // cb_jg
  113. //
  114. cb_jg.AutoSize = true;
  115. cb_jg.Location = new Point(236, 201);
  116. cb_jg.Name = "cb_jg";
  117. cb_jg.Size = new Size(75, 21);
  118. cb_jg.TabIndex = 8;
  119. cb_jg.Text = "同步机构";
  120. cb_jg.UseVisualStyleBackColor = true;
  121. //
  122. // Form1
  123. //
  124. AutoScaleDimensions = new SizeF(7F, 17F);
  125. AutoScaleMode = AutoScaleMode.Font;
  126. ClientSize = new Size(403, 301);
  127. Controls.Add(cb_jg);
  128. Controls.Add(cb_user);
  129. Controls.Add(cb_zsk);
  130. Controls.Add(cb_order);
  131. Controls.Add(btn_tb);
  132. Controls.Add(label2);
  133. Controls.Add(label1);
  134. Controls.Add(end_time);
  135. Controls.Add(st_time);
  136. Name = "Form1";
  137. Text = "同步程序";
  138. ResumeLayout(false);
  139. PerformLayout();
  140. }
  141. #endregion
  142. private DateTimePicker st_time;
  143. private DateTimePicker end_time;
  144. private Label label1;
  145. private Label label2;
  146. private Button btn_tb;
  147. private CheckBox cb_order;
  148. private CheckBox cb_zsk;
  149. private CheckBox cb_user;
  150. private CheckBox cb_jg;
  151. }
  152. }