Form1.Designer.cs 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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.label2 = new System.Windows.Forms.Label();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.txtPort = new System.Windows.Forms.TextBox();
  31. this.txtIP = new System.Windows.Forms.TextBox();
  32. this.btnConnect = new System.Windows.Forms.Button();
  33. this.lblState = new System.Windows.Forms.Label();
  34. this.showDataGrid = new System.Windows.Forms.DataGridView();
  35. this.getAllData = new System.Windows.Forms.Button();
  36. this.saveData = new System.Windows.Forms.Button();
  37. this.allData = new System.Windows.Forms.BindingSource();
  38. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  39. ((System.ComponentModel.ISupportInitialize)(this.showDataGrid)).BeginInit();
  40. ((System.ComponentModel.ISupportInitialize)(this.allData)).BeginInit();
  41. this.SuspendLayout();
  42. //
  43. // label2
  44. //
  45. this.label2.AutoSize = true;
  46. this.label2.Location = new System.Drawing.Point(206, 31);
  47. this.label2.Name = "label2";
  48. this.label2.Size = new System.Drawing.Size(44, 18);
  49. this.label2.TabIndex = 14;
  50. this.label2.Text = "Port";
  51. //
  52. // label1
  53. //
  54. this.label1.AutoSize = true;
  55. this.label1.Location = new System.Drawing.Point(36, 31);
  56. this.label1.Name = "label1";
  57. this.label1.Size = new System.Drawing.Size(26, 18);
  58. this.label1.TabIndex = 13;
  59. this.label1.Text = "IP";
  60. //
  61. // txtPort
  62. //
  63. this.txtPort.Location = new System.Drawing.Point(259, 26);
  64. this.txtPort.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  65. this.txtPort.Name = "txtPort";
  66. this.txtPort.Size = new System.Drawing.Size(54, 28);
  67. this.txtPort.TabIndex = 12;
  68. this.txtPort.Text = "4370";
  69. //
  70. // txtIP
  71. //
  72. this.txtIP.Location = new System.Drawing.Point(66, 26);
  73. this.txtIP.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  74. this.txtIP.Name = "txtIP";
  75. this.txtIP.Size = new System.Drawing.Size(132, 28);
  76. this.txtIP.TabIndex = 11;
  77. this.txtIP.Text = "192.168.253.201";
  78. //
  79. // btnConnect
  80. //
  81. this.btnConnect.Location = new System.Drawing.Point(392, 26);
  82. this.btnConnect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  83. this.btnConnect.Name = "btnConnect";
  84. this.btnConnect.Size = new System.Drawing.Size(78, 30);
  85. this.btnConnect.TabIndex = 10;
  86. this.btnConnect.Text = "连接";
  87. this.btnConnect.UseVisualStyleBackColor = true;
  88. this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
  89. //
  90. // lblState
  91. //
  92. this.lblState.AutoSize = true;
  93. this.lblState.ForeColor = System.Drawing.Color.Crimson;
  94. this.lblState.Location = new System.Drawing.Point(544, 32);
  95. this.lblState.Name = "lblState";
  96. this.lblState.Size = new System.Drawing.Size(242, 18);
  97. this.lblState.TabIndex = 15;
  98. this.lblState.Text = "Current State:Disconnected";
  99. //
  100. // showDataGrid
  101. //
  102. this.showDataGrid.AllowUserToAddRows = false;
  103. this.showDataGrid.AllowUserToDeleteRows = false;
  104. this.showDataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  105. this.showDataGrid.Enabled = false;
  106. this.showDataGrid.Location = new System.Drawing.Point(26, 191);
  107. this.showDataGrid.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  108. this.showDataGrid.Name = "showDataGrid";
  109. this.showDataGrid.RowTemplate.Height = 30;
  110. this.showDataGrid.Size = new System.Drawing.Size(1062, 464);
  111. this.showDataGrid.TabIndex = 16;
  112. //
  113. // getAllData
  114. //
  115. this.getAllData.Location = new System.Drawing.Point(29, 97);
  116. this.getAllData.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  117. this.getAllData.Name = "getAllData";
  118. this.getAllData.Size = new System.Drawing.Size(151, 37);
  119. this.getAllData.TabIndex = 17;
  120. this.getAllData.Text = "获取考勤数据";
  121. this.getAllData.UseVisualStyleBackColor = true;
  122. this.getAllData.Click += new System.EventHandler(this.getAllData_Click);
  123. //
  124. // saveData
  125. //
  126. this.saveData.Location = new System.Drawing.Point(683, 97);
  127. this.saveData.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  128. this.saveData.Name = "saveData";
  129. this.saveData.Size = new System.Drawing.Size(145, 37);
  130. this.saveData.TabIndex = 18;
  131. this.saveData.Text = "保存数据";
  132. this.saveData.UseVisualStyleBackColor = true;
  133. this.saveData.Click += new System.EventHandler(this.saveData_Click);
  134. //
  135. // dataGridViewCheckBoxColumn1
  136. //
  137. this.dataGridViewCheckBoxColumn1.HeaderText = "勾选";
  138. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  139. //
  140. // Form1
  141. //
  142. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  143. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  144. this.ClientSize = new System.Drawing.Size(1113, 677);
  145. this.Controls.Add(this.saveData);
  146. this.Controls.Add(this.getAllData);
  147. this.Controls.Add(this.showDataGrid);
  148. this.Controls.Add(this.lblState);
  149. this.Controls.Add(this.label2);
  150. this.Controls.Add(this.label1);
  151. this.Controls.Add(this.txtPort);
  152. this.Controls.Add(this.txtIP);
  153. this.Controls.Add(this.btnConnect);
  154. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  155. this.Name = "Form1";
  156. this.Text = "Form1";
  157. this.Load += new System.EventHandler(this.Form1_Load);
  158. ((System.ComponentModel.ISupportInitialize)(this.showDataGrid)).EndInit();
  159. ((System.ComponentModel.ISupportInitialize)(this.allData)).EndInit();
  160. this.ResumeLayout(false);
  161. this.PerformLayout();
  162. }
  163. #endregion
  164. private System.Windows.Forms.Label label2;
  165. private System.Windows.Forms.Label label1;
  166. private System.Windows.Forms.TextBox txtPort;
  167. private System.Windows.Forms.TextBox txtIP;
  168. private System.Windows.Forms.Button btnConnect;
  169. private System.Windows.Forms.Label lblState;
  170. private System.Windows.Forms.DataGridView showDataGrid;
  171. private System.Windows.Forms.Button getAllData;
  172. private System.Windows.Forms.Button saveData;
  173. private System.Windows.Forms.BindingSource allData;
  174. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  175. }
  176. }