Form1.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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.txtIP = new System.Windows.Forms.TextBox();
  33. this.btnConnect = new System.Windows.Forms.Button();
  34. this.lblState = new System.Windows.Forms.Label();
  35. this.showDataGrid = new System.Windows.Forms.DataGridView();
  36. this.cl_cardcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.cl_time = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.getAllData = new System.Windows.Forms.Button();
  39. this.allData = new System.Windows.Forms.BindingSource(this.components);
  40. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  41. this.ExportEmp = new System.Windows.Forms.Button();
  42. this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
  43. this.Master = new System.Windows.Forms.ComboBox();
  44. this.label3 = new System.Windows.Forms.Label();
  45. ((System.ComponentModel.ISupportInitialize)(this.showDataGrid)).BeginInit();
  46. ((System.ComponentModel.ISupportInitialize)(this.allData)).BeginInit();
  47. this.SuspendLayout();
  48. //
  49. // label2
  50. //
  51. this.label2.AutoSize = true;
  52. this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  53. this.label2.Location = new System.Drawing.Point(334, 34);
  54. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  55. this.label2.Name = "label2";
  56. this.label2.Size = new System.Drawing.Size(82, 41);
  57. this.label2.TabIndex = 14;
  58. this.label2.Text = "Port";
  59. //
  60. // label1
  61. //
  62. this.label1.AutoSize = true;
  63. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  64. this.label1.Location = new System.Drawing.Point(48, 32);
  65. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  66. this.label1.Name = "label1";
  67. this.label1.Size = new System.Drawing.Size(47, 41);
  68. this.label1.TabIndex = 13;
  69. this.label1.Text = "IP";
  70. //
  71. // txtPort
  72. //
  73. this.txtPort.Location = new System.Drawing.Point(430, 34);
  74. this.txtPort.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  75. this.txtPort.Name = "txtPort";
  76. this.txtPort.Size = new System.Drawing.Size(70, 35);
  77. this.txtPort.TabIndex = 12;
  78. //
  79. // txtIP
  80. //
  81. this.txtIP.Location = new System.Drawing.Point(116, 34);
  82. this.txtIP.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  83. this.txtIP.Name = "txtIP";
  84. this.txtIP.Size = new System.Drawing.Size(194, 35);
  85. this.txtIP.TabIndex = 11;
  86. //
  87. // btnConnect
  88. //
  89. this.btnConnect.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  90. this.btnConnect.Location = new System.Drawing.Point(558, 30);
  91. this.btnConnect.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  92. this.btnConnect.Name = "btnConnect";
  93. this.btnConnect.Size = new System.Drawing.Size(100, 50);
  94. this.btnConnect.TabIndex = 10;
  95. this.btnConnect.Text = "连接";
  96. this.btnConnect.UseVisualStyleBackColor = true;
  97. this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
  98. //
  99. // lblState
  100. //
  101. this.lblState.AutoSize = true;
  102. this.lblState.ForeColor = System.Drawing.Color.Crimson;
  103. this.lblState.Location = new System.Drawing.Point(718, 44);
  104. this.lblState.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  105. this.lblState.Name = "lblState";
  106. this.lblState.Size = new System.Drawing.Size(142, 24);
  107. this.lblState.TabIndex = 15;
  108. this.lblState.Text = "状态:未连接";
  109. //
  110. // showDataGrid
  111. //
  112. this.showDataGrid.AllowUserToAddRows = false;
  113. this.showDataGrid.AllowUserToDeleteRows = false;
  114. this.showDataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  115. this.showDataGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  116. this.cl_cardcode,
  117. this.cl_time});
  118. this.showDataGrid.Enabled = false;
  119. this.showDataGrid.Location = new System.Drawing.Point(34, 116);
  120. this.showDataGrid.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  121. this.showDataGrid.Name = "showDataGrid";
  122. this.showDataGrid.RowTemplate.Height = 30;
  123. this.showDataGrid.Size = new System.Drawing.Size(1734, 756);
  124. this.showDataGrid.TabIndex = 16;
  125. this.showDataGrid.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.showDataGrid_DataError);
  126. //
  127. // cl_cardcode
  128. //
  129. this.cl_cardcode.DataPropertyName = "cl_cardcode";
  130. this.cl_cardcode.HeaderText = "卡号";
  131. this.cl_cardcode.Name = "cl_cardcode";
  132. this.cl_cardcode.Width = 200;
  133. //
  134. // cl_time
  135. //
  136. this.cl_time.DataPropertyName = "cl_time";
  137. this.cl_time.HeaderText = "打卡时间";
  138. this.cl_time.MinimumWidth = 250;
  139. this.cl_time.Name = "cl_time";
  140. this.cl_time.Width = 250;
  141. //
  142. // getAllData
  143. //
  144. this.getAllData.BackColor = System.Drawing.SystemColors.ControlLightLight;
  145. this.getAllData.Location = new System.Drawing.Point(1544, 8);
  146. this.getAllData.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  147. this.getAllData.Name = "getAllData";
  148. this.getAllData.Size = new System.Drawing.Size(204, 50);
  149. this.getAllData.TabIndex = 17;
  150. this.getAllData.Text = "同步考勤数据";
  151. this.getAllData.UseVisualStyleBackColor = false;
  152. this.getAllData.Click += new System.EventHandler(this.getAllData_Click);
  153. //
  154. // dataGridViewCheckBoxColumn1
  155. //
  156. this.dataGridViewCheckBoxColumn1.HeaderText = "勾选";
  157. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  158. //
  159. // ExportEmp
  160. //
  161. this.ExportEmp.BackColor = System.Drawing.SystemColors.ControlLightLight;
  162. this.ExportEmp.Location = new System.Drawing.Point(1544, 62);
  163. this.ExportEmp.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  164. this.ExportEmp.Name = "ExportEmp";
  165. this.ExportEmp.Size = new System.Drawing.Size(204, 50);
  166. this.ExportEmp.TabIndex = 18;
  167. this.ExportEmp.Text = "导出人员数据";
  168. this.ExportEmp.UseVisualStyleBackColor = false;
  169. this.ExportEmp.Click += new System.EventHandler(this.ExportEmp_Click);
  170. //
  171. // Master
  172. //
  173. this.Master.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  174. this.Master.FormattingEnabled = true;
  175. this.Master.Location = new System.Drawing.Point(1018, 41);
  176. this.Master.Name = "Master";
  177. this.Master.Size = new System.Drawing.Size(480, 32);
  178. this.Master.TabIndex = 19;
  179. //
  180. // label3
  181. //
  182. this.label3.AutoSize = true;
  183. this.label3.ForeColor = System.Drawing.Color.Black;
  184. this.label3.Location = new System.Drawing.Point(905, 44);
  185. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  186. this.label3.Name = "label3";
  187. this.label3.Size = new System.Drawing.Size(106, 24);
  188. this.label3.TabIndex = 20;
  189. this.label3.Text = "选择账套";
  190. //
  191. // Form1
  192. //
  193. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  194. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  195. this.ClientSize = new System.Drawing.Size(1781, 902);
  196. this.Controls.Add(this.label3);
  197. this.Controls.Add(this.Master);
  198. this.Controls.Add(this.ExportEmp);
  199. this.Controls.Add(this.getAllData);
  200. this.Controls.Add(this.showDataGrid);
  201. this.Controls.Add(this.lblState);
  202. this.Controls.Add(this.label2);
  203. this.Controls.Add(this.label1);
  204. this.Controls.Add(this.txtPort);
  205. this.Controls.Add(this.txtIP);
  206. this.Controls.Add(this.btnConnect);
  207. this.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  208. this.Name = "Form1";
  209. this.Text = "Form1";
  210. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  211. this.Load += new System.EventHandler(this.Form1_Load);
  212. ((System.ComponentModel.ISupportInitialize)(this.showDataGrid)).EndInit();
  213. ((System.ComponentModel.ISupportInitialize)(this.allData)).EndInit();
  214. this.ResumeLayout(false);
  215. this.PerformLayout();
  216. }
  217. #endregion
  218. private System.Windows.Forms.Label label2;
  219. private System.Windows.Forms.Label label1;
  220. private System.Windows.Forms.TextBox txtPort;
  221. private System.Windows.Forms.TextBox txtIP;
  222. private System.Windows.Forms.Button btnConnect;
  223. private System.Windows.Forms.Label lblState;
  224. private System.Windows.Forms.DataGridView showDataGrid;
  225. private System.Windows.Forms.Button getAllData;
  226. private System.Windows.Forms.BindingSource allData;
  227. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  228. private System.Windows.Forms.DataGridViewTextBoxColumn cl_cardcode;
  229. private System.Windows.Forms.DataGridViewTextBoxColumn cl_time;
  230. private System.Windows.Forms.Button ExportEmp;
  231. private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
  232. private System.Windows.Forms.ComboBox Master;
  233. private System.Windows.Forms.Label label3;
  234. }
  235. }