Form1.Designer.cs 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. namespace UAS_CheckWork
  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.label2 = new System.Windows.Forms.Label();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.txtPort = new System.Windows.Forms.TextBox();
  32. this.lblState = new System.Windows.Forms.Label();
  33. this.getAllData = new System.Windows.Forms.Button();
  34. this.allData = new System.Windows.Forms.BindingSource(this.components);
  35. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  36. this.ExportEmp = new System.Windows.Forms.Button();
  37. this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
  38. this.Master = new System.Windows.Forms.ComboBox();
  39. this.label3 = new System.Windows.Forms.Label();
  40. this.OperateResult = new System.Windows.Forms.RichTextBox();
  41. this.IP = new System.Windows.Forms.ComboBox();
  42. ((System.ComponentModel.ISupportInitialize)(this.allData)).BeginInit();
  43. this.SuspendLayout();
  44. //
  45. // label2
  46. //
  47. this.label2.AutoSize = true;
  48. this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  49. this.label2.Location = new System.Drawing.Point(386, 38);
  50. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  51. this.label2.Name = "label2";
  52. this.label2.Size = new System.Drawing.Size(82, 41);
  53. this.label2.TabIndex = 14;
  54. this.label2.Text = "Port";
  55. //
  56. // label1
  57. //
  58. this.label1.AutoSize = true;
  59. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  60. this.label1.Location = new System.Drawing.Point(48, 38);
  61. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  62. this.label1.Name = "label1";
  63. this.label1.Size = new System.Drawing.Size(47, 41);
  64. this.label1.TabIndex = 13;
  65. this.label1.Text = "IP";
  66. //
  67. // txtPort
  68. //
  69. this.txtPort.Location = new System.Drawing.Point(476, 38);
  70. this.txtPort.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  71. this.txtPort.Name = "txtPort";
  72. this.txtPort.Size = new System.Drawing.Size(70, 35);
  73. this.txtPort.TabIndex = 12;
  74. this.txtPort.Text = "4370";
  75. //
  76. // lblState
  77. //
  78. this.lblState.AutoSize = true;
  79. this.lblState.ForeColor = System.Drawing.Color.Crimson;
  80. this.lblState.Location = new System.Drawing.Point(613, 49);
  81. this.lblState.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  82. this.lblState.Name = "lblState";
  83. this.lblState.Size = new System.Drawing.Size(142, 24);
  84. this.lblState.TabIndex = 15;
  85. this.lblState.Text = "状态:未连接";
  86. //
  87. // getAllData
  88. //
  89. this.getAllData.BackColor = System.Drawing.SystemColors.ControlLightLight;
  90. this.getAllData.Location = new System.Drawing.Point(1544, 8);
  91. this.getAllData.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  92. this.getAllData.Name = "getAllData";
  93. this.getAllData.Size = new System.Drawing.Size(204, 50);
  94. this.getAllData.TabIndex = 17;
  95. this.getAllData.Text = "同步考勤数据";
  96. this.getAllData.UseVisualStyleBackColor = false;
  97. this.getAllData.Click += new System.EventHandler(this.getAllData_Click);
  98. //
  99. // dataGridViewCheckBoxColumn1
  100. //
  101. this.dataGridViewCheckBoxColumn1.HeaderText = "勾选";
  102. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  103. //
  104. // ExportEmp
  105. //
  106. this.ExportEmp.BackColor = System.Drawing.SystemColors.ControlLightLight;
  107. this.ExportEmp.Location = new System.Drawing.Point(1544, 62);
  108. this.ExportEmp.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  109. this.ExportEmp.Name = "ExportEmp";
  110. this.ExportEmp.Size = new System.Drawing.Size(204, 50);
  111. this.ExportEmp.TabIndex = 18;
  112. this.ExportEmp.Text = "导出人员数据";
  113. this.ExportEmp.UseVisualStyleBackColor = false;
  114. this.ExportEmp.Click += new System.EventHandler(this.ExportEmp_Click);
  115. //
  116. // Master
  117. //
  118. this.Master.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  119. this.Master.FormattingEnabled = true;
  120. this.Master.Location = new System.Drawing.Point(929, 52);
  121. this.Master.Name = "Master";
  122. this.Master.Size = new System.Drawing.Size(480, 32);
  123. this.Master.TabIndex = 19;
  124. //
  125. // label3
  126. //
  127. this.label3.AutoSize = true;
  128. this.label3.ForeColor = System.Drawing.Color.Black;
  129. this.label3.Location = new System.Drawing.Point(816, 55);
  130. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  131. this.label3.Name = "label3";
  132. this.label3.Size = new System.Drawing.Size(106, 24);
  133. this.label3.TabIndex = 20;
  134. this.label3.Text = "选择账套";
  135. //
  136. // OperateResult
  137. //
  138. this.OperateResult.Location = new System.Drawing.Point(55, 136);
  139. this.OperateResult.Name = "OperateResult";
  140. this.OperateResult.Size = new System.Drawing.Size(1693, 734);
  141. this.OperateResult.TabIndex = 21;
  142. this.OperateResult.Text = "";
  143. //
  144. // IP
  145. //
  146. this.IP.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  147. this.IP.FormattingEnabled = true;
  148. this.IP.Items.AddRange(new object[] {
  149. "192.168.2.230",
  150. "192.168.2.231",
  151. "192.168.2.232",
  152. "192.168.1.4",
  153. "192.168.1.241",
  154. "192.168.1.153",
  155. "192.168.1.182",
  156. "192.168.1.183",
  157. "192.168.1.75",
  158. "192.168.1.181",
  159. "192.168.1.219",
  160. "192.168.1.244"});
  161. this.IP.Location = new System.Drawing.Point(111, 44);
  162. this.IP.Name = "IP";
  163. this.IP.Size = new System.Drawing.Size(268, 32);
  164. this.IP.TabIndex = 22;
  165. //
  166. // Form1
  167. //
  168. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  169. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  170. this.ClientSize = new System.Drawing.Size(1781, 902);
  171. this.Controls.Add(this.IP);
  172. this.Controls.Add(this.OperateResult);
  173. this.Controls.Add(this.label3);
  174. this.Controls.Add(this.Master);
  175. this.Controls.Add(this.ExportEmp);
  176. this.Controls.Add(this.getAllData);
  177. this.Controls.Add(this.lblState);
  178. this.Controls.Add(this.label2);
  179. this.Controls.Add(this.label1);
  180. this.Controls.Add(this.txtPort);
  181. this.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  182. this.Name = "Form1";
  183. this.Text = "Form1";
  184. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  185. this.Load += new System.EventHandler(this.Form1_Load);
  186. ((System.ComponentModel.ISupportInitialize)(this.allData)).EndInit();
  187. this.ResumeLayout(false);
  188. this.PerformLayout();
  189. }
  190. #endregion
  191. private System.Windows.Forms.Label label2;
  192. private System.Windows.Forms.Label label1;
  193. private System.Windows.Forms.TextBox txtPort;
  194. private System.Windows.Forms.Label lblState;
  195. private System.Windows.Forms.Button getAllData;
  196. private System.Windows.Forms.BindingSource allData;
  197. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  198. private System.Windows.Forms.Button ExportEmp;
  199. private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
  200. private System.Windows.Forms.ComboBox Master;
  201. private System.Windows.Forms.Label label3;
  202. private System.Windows.Forms.RichTextBox OperateResult;
  203. private System.Windows.Forms.ComboBox IP;
  204. }
  205. }