Form2.Designer.cs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. namespace UAS_CheckWork
  2. {
  3. partial class Form2
  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. this.lblState = new System.Windows.Forms.Label();
  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.startListening = new System.Windows.Forms.Button();
  35. this.logInfo = new System.Windows.Forms.DataGridView();
  36. this.UserID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.AttState = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.VerifyMethod = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.Time = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.WorkCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. ((System.ComponentModel.ISupportInitialize)(this.logInfo)).BeginInit();
  42. this.SuspendLayout();
  43. //
  44. // lblState
  45. //
  46. this.lblState.AutoSize = true;
  47. this.lblState.ForeColor = System.Drawing.Color.Crimson;
  48. this.lblState.Location = new System.Drawing.Point(540, 35);
  49. this.lblState.Name = "lblState";
  50. this.lblState.Size = new System.Drawing.Size(107, 18);
  51. this.lblState.TabIndex = 21;
  52. this.lblState.Text = "状态:未连接";
  53. //
  54. // label2
  55. //
  56. this.label2.AutoSize = true;
  57. this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  58. this.label2.Location = new System.Drawing.Point(252, 28);
  59. this.label2.Name = "label2";
  60. this.label2.Size = new System.Drawing.Size(62, 31);
  61. this.label2.TabIndex = 20;
  62. this.label2.Text = "Port";
  63. //
  64. // label1
  65. //
  66. this.label1.AutoSize = true;
  67. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  68. this.label1.Location = new System.Drawing.Point(38, 26);
  69. this.label1.Name = "label1";
  70. this.label1.Size = new System.Drawing.Size(36, 31);
  71. this.label1.TabIndex = 19;
  72. this.label1.Text = "IP";
  73. //
  74. // txtPort
  75. //
  76. this.txtPort.Location = new System.Drawing.Point(324, 28);
  77. this.txtPort.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  78. this.txtPort.Name = "txtPort";
  79. this.txtPort.Size = new System.Drawing.Size(54, 28);
  80. this.txtPort.TabIndex = 18;
  81. this.txtPort.Text = "4370";
  82. //
  83. // txtIP
  84. //
  85. this.txtIP.Location = new System.Drawing.Point(89, 28);
  86. this.txtIP.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  87. this.txtIP.Name = "txtIP";
  88. this.txtIP.Size = new System.Drawing.Size(146, 28);
  89. this.txtIP.TabIndex = 17;
  90. this.txtIP.Text = "192.168.253.201";
  91. //
  92. // btnConnect
  93. //
  94. this.btnConnect.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  95. this.btnConnect.Location = new System.Drawing.Point(420, 24);
  96. this.btnConnect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  97. this.btnConnect.Name = "btnConnect";
  98. this.btnConnect.Size = new System.Drawing.Size(75, 38);
  99. this.btnConnect.TabIndex = 16;
  100. this.btnConnect.Text = "连接";
  101. this.btnConnect.UseVisualStyleBackColor = true;
  102. this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
  103. //
  104. // startListening
  105. //
  106. this.startListening.BackColor = System.Drawing.SystemColors.ControlLightLight;
  107. this.startListening.Location = new System.Drawing.Point(677, 27);
  108. this.startListening.Name = "startListening";
  109. this.startListening.Size = new System.Drawing.Size(127, 36);
  110. this.startListening.TabIndex = 22;
  111. this.startListening.Text = "开始实时事件";
  112. this.startListening.UseVisualStyleBackColor = false;
  113. this.startListening.Click += new System.EventHandler(this.startListening_Click);
  114. //
  115. // logInfo
  116. //
  117. this.logInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  118. this.logInfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  119. this.UserID,
  120. this.AttState,
  121. this.VerifyMethod,
  122. this.Time,
  123. this.WorkCode});
  124. this.logInfo.Location = new System.Drawing.Point(44, 98);
  125. this.logInfo.Name = "logInfo";
  126. this.logInfo.RowTemplate.Height = 30;
  127. this.logInfo.Size = new System.Drawing.Size(760, 381);
  128. this.logInfo.TabIndex = 23;
  129. //
  130. // UserID
  131. //
  132. this.UserID.HeaderText = "用户ID";
  133. this.UserID.Name = "UserID";
  134. //
  135. // AttState
  136. //
  137. this.AttState.HeaderText = "考勤状态";
  138. this.AttState.Name = "AttState";
  139. //
  140. // VerifyMethod
  141. //
  142. this.VerifyMethod.HeaderText = "验证方式";
  143. this.VerifyMethod.Name = "VerifyMethod";
  144. //
  145. // Time
  146. //
  147. this.Time.HeaderText = "考勤时间";
  148. this.Time.Name = "Time";
  149. //
  150. // WorkCode
  151. //
  152. this.WorkCode.HeaderText = "WorkCode";
  153. this.WorkCode.Name = "WorkCode";
  154. //
  155. // Form2
  156. //
  157. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  158. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  159. this.ClientSize = new System.Drawing.Size(846, 507);
  160. this.Controls.Add(this.logInfo);
  161. this.Controls.Add(this.startListening);
  162. this.Controls.Add(this.lblState);
  163. this.Controls.Add(this.label2);
  164. this.Controls.Add(this.label1);
  165. this.Controls.Add(this.txtPort);
  166. this.Controls.Add(this.txtIP);
  167. this.Controls.Add(this.btnConnect);
  168. this.Name = "Form2";
  169. this.Text = "实时获取考勤";
  170. ((System.ComponentModel.ISupportInitialize)(this.logInfo)).EndInit();
  171. this.ResumeLayout(false);
  172. this.PerformLayout();
  173. }
  174. #endregion
  175. private System.Windows.Forms.Label lblState;
  176. private System.Windows.Forms.Label label2;
  177. private System.Windows.Forms.Label label1;
  178. private System.Windows.Forms.TextBox txtPort;
  179. private System.Windows.Forms.TextBox txtIP;
  180. private System.Windows.Forms.Button btnConnect;
  181. private System.Windows.Forms.Button startListening;
  182. private System.Windows.Forms.DataGridView logInfo;
  183. private System.Windows.Forms.DataGridViewTextBoxColumn UserID;
  184. private System.Windows.Forms.DataGridViewTextBoxColumn AttState;
  185. private System.Windows.Forms.DataGridViewTextBoxColumn VerifyMethod;
  186. private System.Windows.Forms.DataGridViewTextBoxColumn Time;
  187. private System.Windows.Forms.DataGridViewTextBoxColumn WorkCode;
  188. }
  189. }