CNAS取数仪器端升级
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

frmSystemSetting.Designer.cs 13KB

4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. namespace CNAS_DBSync
  2. {
  3. partial class frmSystemSetting
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSystemSetting));
  29. this.pnlAll = new System.Windows.Forms.Panel();
  30. this.pnlBody = new System.Windows.Forms.Panel();
  31. this.btnOK = new System.Windows.Forms.Button();
  32. this.groupBox1 = new System.Windows.Forms.GroupBox();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.numpLogDataDays = new System.Windows.Forms.NumericUpDown();
  35. this.label4 = new System.Windows.Forms.Label();
  36. this.cbxAutomatic = new System.Windows.Forms.CheckBox();
  37. this.cbxManual = new System.Windows.Forms.CheckBox();
  38. this.label2 = new System.Windows.Forms.Label();
  39. this.label1 = new System.Windows.Forms.Label();
  40. this.numpShowDataDays = new System.Windows.Forms.NumericUpDown();
  41. this.lblText1 = new System.Windows.Forms.Label();
  42. this.pnlRight = new System.Windows.Forms.Panel();
  43. this.pnlLeft = new System.Windows.Forms.Panel();
  44. this.pnlBottom = new System.Windows.Forms.Panel();
  45. this.pnlTop = new System.Windows.Forms.Panel();
  46. this.txtCode = new System.Windows.Forms.TextBox();
  47. this.label5 = new System.Windows.Forms.Label();
  48. this.pnlAll.SuspendLayout();
  49. this.pnlBody.SuspendLayout();
  50. this.groupBox1.SuspendLayout();
  51. ((System.ComponentModel.ISupportInitialize)(this.numpLogDataDays)).BeginInit();
  52. ((System.ComponentModel.ISupportInitialize)(this.numpShowDataDays)).BeginInit();
  53. this.SuspendLayout();
  54. //
  55. // pnlAll
  56. //
  57. this.pnlAll.Controls.Add(this.pnlBody);
  58. this.pnlAll.Controls.Add(this.pnlRight);
  59. this.pnlAll.Controls.Add(this.pnlLeft);
  60. this.pnlAll.Controls.Add(this.pnlBottom);
  61. this.pnlAll.Controls.Add(this.pnlTop);
  62. this.pnlAll.Dock = System.Windows.Forms.DockStyle.Fill;
  63. this.pnlAll.Location = new System.Drawing.Point(0, 0);
  64. this.pnlAll.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  65. this.pnlAll.Name = "pnlAll";
  66. this.pnlAll.Size = new System.Drawing.Size(670, 362);
  67. this.pnlAll.TabIndex = 0;
  68. //
  69. // pnlBody
  70. //
  71. this.pnlBody.Controls.Add(this.btnOK);
  72. this.pnlBody.Controls.Add(this.groupBox1);
  73. this.pnlBody.Dock = System.Windows.Forms.DockStyle.Fill;
  74. this.pnlBody.Location = new System.Drawing.Point(10, 10);
  75. this.pnlBody.Name = "pnlBody";
  76. this.pnlBody.Size = new System.Drawing.Size(650, 342);
  77. this.pnlBody.TabIndex = 4;
  78. //
  79. // btnOK
  80. //
  81. this.btnOK.Location = new System.Drawing.Point(537, 297);
  82. this.btnOK.Name = "btnOK";
  83. this.btnOK.Size = new System.Drawing.Size(90, 30);
  84. this.btnOK.TabIndex = 1;
  85. this.btnOK.Text = "确定";
  86. this.btnOK.UseVisualStyleBackColor = true;
  87. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  88. //
  89. // groupBox1
  90. //
  91. this.groupBox1.Controls.Add(this.label5);
  92. this.groupBox1.Controls.Add(this.label3);
  93. this.groupBox1.Controls.Add(this.txtCode);
  94. this.groupBox1.Controls.Add(this.numpLogDataDays);
  95. this.groupBox1.Controls.Add(this.label4);
  96. this.groupBox1.Controls.Add(this.cbxAutomatic);
  97. this.groupBox1.Controls.Add(this.cbxManual);
  98. this.groupBox1.Controls.Add(this.label2);
  99. this.groupBox1.Controls.Add(this.label1);
  100. this.groupBox1.Controls.Add(this.numpShowDataDays);
  101. this.groupBox1.Controls.Add(this.lblText1);
  102. this.groupBox1.Location = new System.Drawing.Point(2, 6);
  103. this.groupBox1.Name = "groupBox1";
  104. this.groupBox1.Size = new System.Drawing.Size(625, 285);
  105. this.groupBox1.TabIndex = 0;
  106. this.groupBox1.TabStop = false;
  107. this.groupBox1.Text = "设置";
  108. //
  109. // label3
  110. //
  111. this.label3.AutoSize = true;
  112. this.label3.Location = new System.Drawing.Point(430, 166);
  113. this.label3.Name = "label3";
  114. this.label3.Size = new System.Drawing.Size(24, 20);
  115. this.label3.TabIndex = 8;
  116. this.label3.Text = "天";
  117. //
  118. // numpLogDataDays
  119. //
  120. this.numpLogDataDays.Location = new System.Drawing.Point(251, 164);
  121. this.numpLogDataDays.Name = "numpLogDataDays";
  122. this.numpLogDataDays.Size = new System.Drawing.Size(158, 27);
  123. this.numpLogDataDays.TabIndex = 7;
  124. //
  125. // label4
  126. //
  127. this.label4.AutoSize = true;
  128. this.label4.Location = new System.Drawing.Point(41, 164);
  129. this.label4.Name = "label4";
  130. this.label4.Size = new System.Drawing.Size(204, 20);
  131. this.label4.TabIndex = 6;
  132. this.label4.Text = "自动生成日志记录范围:最近";
  133. //
  134. // cbxAutomatic
  135. //
  136. this.cbxAutomatic.AutoSize = true;
  137. this.cbxAutomatic.Checked = true;
  138. this.cbxAutomatic.CheckState = System.Windows.Forms.CheckState.Checked;
  139. this.cbxAutomatic.Location = new System.Drawing.Point(348, 35);
  140. this.cbxAutomatic.Name = "cbxAutomatic";
  141. this.cbxAutomatic.Size = new System.Drawing.Size(61, 24);
  142. this.cbxAutomatic.TabIndex = 5;
  143. this.cbxAutomatic.Text = "自动";
  144. this.cbxAutomatic.UseVisualStyleBackColor = true;
  145. this.cbxAutomatic.CheckedChanged += new System.EventHandler(this.cbxAutomatic_CheckedChanged);
  146. //
  147. // cbxManual
  148. //
  149. this.cbxManual.AutoSize = true;
  150. this.cbxManual.Location = new System.Drawing.Point(251, 34);
  151. this.cbxManual.Name = "cbxManual";
  152. this.cbxManual.Size = new System.Drawing.Size(61, 24);
  153. this.cbxManual.TabIndex = 4;
  154. this.cbxManual.Text = "手动";
  155. this.cbxManual.UseVisualStyleBackColor = true;
  156. this.cbxManual.CheckedChanged += new System.EventHandler(this.cbxManual_CheckedChanged);
  157. //
  158. // label2
  159. //
  160. this.label2.AutoSize = true;
  161. this.label2.Location = new System.Drawing.Point(41, 35);
  162. this.label2.Name = "label2";
  163. this.label2.Size = new System.Drawing.Size(148, 20);
  164. this.label2.TabIndex = 3;
  165. this.label2.Text = "加载来源表结构方式:";
  166. //
  167. // label1
  168. //
  169. this.label1.AutoSize = true;
  170. this.label1.Location = new System.Drawing.Point(430, 106);
  171. this.label1.Name = "label1";
  172. this.label1.Size = new System.Drawing.Size(24, 20);
  173. this.label1.TabIndex = 2;
  174. this.label1.Text = "天";
  175. //
  176. // numpShowDataDays
  177. //
  178. this.numpShowDataDays.Location = new System.Drawing.Point(251, 99);
  179. this.numpShowDataDays.Name = "numpShowDataDays";
  180. this.numpShowDataDays.Size = new System.Drawing.Size(158, 27);
  181. this.numpShowDataDays.TabIndex = 1;
  182. //
  183. // lblText1
  184. //
  185. this.lblText1.AutoSize = true;
  186. this.lblText1.Location = new System.Drawing.Point(41, 102);
  187. this.lblText1.Name = "lblText1";
  188. this.lblText1.Size = new System.Drawing.Size(204, 20);
  189. this.lblText1.TabIndex = 0;
  190. this.lblText1.Text = "数据展示界面显示范围:最近";
  191. //
  192. // pnlRight
  193. //
  194. this.pnlRight.Dock = System.Windows.Forms.DockStyle.Right;
  195. this.pnlRight.Location = new System.Drawing.Point(660, 10);
  196. this.pnlRight.Name = "pnlRight";
  197. this.pnlRight.Size = new System.Drawing.Size(10, 342);
  198. this.pnlRight.TabIndex = 3;
  199. //
  200. // pnlLeft
  201. //
  202. this.pnlLeft.Dock = System.Windows.Forms.DockStyle.Left;
  203. this.pnlLeft.Location = new System.Drawing.Point(0, 10);
  204. this.pnlLeft.Name = "pnlLeft";
  205. this.pnlLeft.Size = new System.Drawing.Size(10, 342);
  206. this.pnlLeft.TabIndex = 2;
  207. //
  208. // pnlBottom
  209. //
  210. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  211. this.pnlBottom.Location = new System.Drawing.Point(0, 352);
  212. this.pnlBottom.Name = "pnlBottom";
  213. this.pnlBottom.Size = new System.Drawing.Size(670, 10);
  214. this.pnlBottom.TabIndex = 1;
  215. //
  216. // pnlTop
  217. //
  218. this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
  219. this.pnlTop.Location = new System.Drawing.Point(0, 0);
  220. this.pnlTop.Name = "pnlTop";
  221. this.pnlTop.Size = new System.Drawing.Size(670, 10);
  222. this.pnlTop.TabIndex = 0;
  223. //
  224. // txtCode
  225. //
  226. this.txtCode.Location = new System.Drawing.Point(252, 218);
  227. this.txtCode.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  228. this.txtCode.Name = "txtCode";
  229. this.txtCode.Size = new System.Drawing.Size(158, 27);
  230. this.txtCode.TabIndex = 0;
  231. //
  232. // label5
  233. //
  234. this.label5.AutoSize = true;
  235. this.label5.Location = new System.Drawing.Point(48, 218);
  236. this.label5.Name = "label5";
  237. this.label5.Size = new System.Drawing.Size(84, 20);
  238. this.label5.TabIndex = 2;
  239. this.label5.Text = "仪器编号:";
  240. //
  241. // frmSystemSetting
  242. //
  243. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
  244. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  245. this.BackColor = System.Drawing.SystemColors.Control;
  246. this.ClientSize = new System.Drawing.Size(670, 362);
  247. this.Controls.Add(this.pnlAll);
  248. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  249. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  250. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  251. this.MaximizeBox = false;
  252. this.Name = "frmSystemSetting";
  253. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  254. this.Text = "系统参数设置";
  255. this.Load += new System.EventHandler(this.frmSystemSetting_Load);
  256. this.pnlAll.ResumeLayout(false);
  257. this.pnlBody.ResumeLayout(false);
  258. this.groupBox1.ResumeLayout(false);
  259. this.groupBox1.PerformLayout();
  260. ((System.ComponentModel.ISupportInitialize)(this.numpLogDataDays)).EndInit();
  261. ((System.ComponentModel.ISupportInitialize)(this.numpShowDataDays)).EndInit();
  262. this.ResumeLayout(false);
  263. }
  264. #endregion
  265. private System.Windows.Forms.Panel pnlAll;
  266. private System.Windows.Forms.Panel pnlBottom;
  267. private System.Windows.Forms.Panel pnlTop;
  268. private System.Windows.Forms.Panel pnlRight;
  269. private System.Windows.Forms.Panel pnlLeft;
  270. private System.Windows.Forms.Panel pnlBody;
  271. private System.Windows.Forms.GroupBox groupBox1;
  272. private System.Windows.Forms.NumericUpDown numpShowDataDays;
  273. private System.Windows.Forms.Label lblText1;
  274. private System.Windows.Forms.Label label1;
  275. private System.Windows.Forms.CheckBox cbxAutomatic;
  276. private System.Windows.Forms.CheckBox cbxManual;
  277. private System.Windows.Forms.Label label2;
  278. private System.Windows.Forms.Label label3;
  279. private System.Windows.Forms.NumericUpDown numpLogDataDays;
  280. private System.Windows.Forms.Label label4;
  281. private System.Windows.Forms.Button btnOK;
  282. private System.Windows.Forms.Label label5;
  283. private System.Windows.Forms.TextBox txtCode;
  284. }
  285. }