Form1.Designer.cs 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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.Column1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  37. this.getAllData = new System.Windows.Forms.Button();
  38. this.saveData = new System.Windows.Forms.Button();
  39. this.allData = new System.Windows.Forms.BindingSource(this.components);
  40. this.chooseAll = new UAS_MES.CustomControl.ButtonUtil.ChooseAllButton();
  41. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  42. ((System.ComponentModel.ISupportInitialize)(this.showDataGrid)).BeginInit();
  43. ((System.ComponentModel.ISupportInitialize)(this.allData)).BeginInit();
  44. this.SuspendLayout();
  45. //
  46. // label2
  47. //
  48. this.label2.AutoSize = true;
  49. this.label2.Location = new System.Drawing.Point(226, 31);
  50. this.label2.Name = "label2";
  51. this.label2.Size = new System.Drawing.Size(44, 18);
  52. this.label2.TabIndex = 14;
  53. this.label2.Text = "Port";
  54. //
  55. // label1
  56. //
  57. this.label1.AutoSize = true;
  58. this.label1.Location = new System.Drawing.Point(56, 31);
  59. this.label1.Name = "label1";
  60. this.label1.Size = new System.Drawing.Size(26, 18);
  61. this.label1.TabIndex = 13;
  62. this.label1.Text = "IP";
  63. //
  64. // txtPort
  65. //
  66. this.txtPort.Location = new System.Drawing.Point(269, 27);
  67. this.txtPort.Name = "txtPort";
  68. this.txtPort.Size = new System.Drawing.Size(53, 28);
  69. this.txtPort.TabIndex = 12;
  70. this.txtPort.Text = "4370";
  71. //
  72. // txtIP
  73. //
  74. this.txtIP.Location = new System.Drawing.Point(87, 27);
  75. this.txtIP.Name = "txtIP";
  76. this.txtIP.Size = new System.Drawing.Size(95, 28);
  77. this.txtIP.TabIndex = 11;
  78. this.txtIP.Text = "192.168.1.201";
  79. //
  80. // btnConnect
  81. //
  82. this.btnConnect.Location = new System.Drawing.Point(412, 27);
  83. this.btnConnect.Name = "btnConnect";
  84. this.btnConnect.Size = new System.Drawing.Size(78, 23);
  85. this.btnConnect.TabIndex = 10;
  86. this.btnConnect.Text = "Connect";
  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(565, 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.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  106. this.Column1});
  107. this.showDataGrid.Enabled = false;
  108. this.showDataGrid.Location = new System.Drawing.Point(59, 191);
  109. this.showDataGrid.Name = "showDataGrid";
  110. this.showDataGrid.RowTemplate.Height = 30;
  111. this.showDataGrid.Size = new System.Drawing.Size(792, 358);
  112. this.showDataGrid.TabIndex = 16;
  113. //
  114. // Column1
  115. //
  116. this.Column1.HeaderText = "勾选";
  117. this.Column1.Name = "Column1";
  118. //
  119. // getAllData
  120. //
  121. this.getAllData.Location = new System.Drawing.Point(59, 97);
  122. this.getAllData.Name = "getAllData";
  123. this.getAllData.Size = new System.Drawing.Size(151, 37);
  124. this.getAllData.TabIndex = 17;
  125. this.getAllData.Text = "获取考勤数据";
  126. this.getAllData.UseVisualStyleBackColor = true;
  127. this.getAllData.Click += new System.EventHandler(this.getAllData_Click);
  128. //
  129. // saveData
  130. //
  131. this.saveData.Location = new System.Drawing.Point(683, 97);
  132. this.saveData.Name = "saveData";
  133. this.saveData.Size = new System.Drawing.Size(145, 37);
  134. this.saveData.TabIndex = 18;
  135. this.saveData.Text = "保存数据";
  136. this.saveData.UseVisualStyleBackColor = true;
  137. this.saveData.Click += new System.EventHandler(this.saveData_Click);
  138. //
  139. // chooseAll
  140. //
  141. this.chooseAll.Location = new System.Drawing.Point(59, 149);
  142. this.chooseAll.Name = "chooseAll";
  143. this.chooseAll.Size = new System.Drawing.Size(83, 28);
  144. this.chooseAll.TabIndex = 19;
  145. this.chooseAll.Text = "全选";
  146. this.chooseAll.UseVisualStyleBackColor = true;
  147. //
  148. // dataGridViewCheckBoxColumn1
  149. //
  150. this.dataGridViewCheckBoxColumn1.HeaderText = "勾选";
  151. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  152. //
  153. // Form1
  154. //
  155. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  156. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  157. this.ClientSize = new System.Drawing.Size(908, 583);
  158. this.Controls.Add(this.chooseAll);
  159. this.Controls.Add(this.saveData);
  160. this.Controls.Add(this.getAllData);
  161. this.Controls.Add(this.showDataGrid);
  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 = "Form1";
  169. this.Text = "Form1";
  170. this.Load += new System.EventHandler(this.Form1_Load);
  171. ((System.ComponentModel.ISupportInitialize)(this.showDataGrid)).EndInit();
  172. ((System.ComponentModel.ISupportInitialize)(this.allData)).EndInit();
  173. this.ResumeLayout(false);
  174. this.PerformLayout();
  175. }
  176. #endregion
  177. private System.Windows.Forms.Label label2;
  178. private System.Windows.Forms.Label label1;
  179. private System.Windows.Forms.TextBox txtPort;
  180. private System.Windows.Forms.TextBox txtIP;
  181. private System.Windows.Forms.Button btnConnect;
  182. private System.Windows.Forms.Label lblState;
  183. private System.Windows.Forms.DataGridView showDataGrid;
  184. private System.Windows.Forms.Button getAllData;
  185. private System.Windows.Forms.Button saveData;
  186. private System.Windows.Forms.BindingSource allData;
  187. private UAS_MES.CustomControl.ButtonUtil.ChooseAllButton chooseAll;
  188. private System.Windows.Forms.DataGridViewCheckBoxColumn Column1;
  189. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  190. }
  191. }