ManualTestForm.Designer.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. namespace APS7100TestTool.Forms
  2. {
  3. partial class ManualTestForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. // Status
  7. private System.Windows.Forms.Label lblStatusTitle;
  8. private System.Windows.Forms.Label lblStatus;
  9. // Control Panel
  10. private System.Windows.Forms.GroupBox grpControl;
  11. private System.Windows.Forms.Label lblVoltage;
  12. private System.Windows.Forms.NumericUpDown numVoltage;
  13. private System.Windows.Forms.Button btnSetVoltage;
  14. private System.Windows.Forms.Label lblFrequency;
  15. private System.Windows.Forms.NumericUpDown numFrequency;
  16. private System.Windows.Forms.Button btnSetFrequency;
  17. private System.Windows.Forms.Label lblCurrent;
  18. private System.Windows.Forms.NumericUpDown numCurrent;
  19. private System.Windows.Forms.Button btnSetCurrent;
  20. private System.Windows.Forms.Label lblVoltageRange;
  21. private System.Windows.Forms.ComboBox cmbVoltageRange;
  22. private System.Windows.Forms.Label lblWaveform;
  23. private System.Windows.Forms.ComboBox cmbWaveform;
  24. private System.Windows.Forms.CheckBox chkOutput;
  25. private System.Windows.Forms.Button btnReset;
  26. // Measure Panel
  27. private System.Windows.Forms.GroupBox grpMeasure;
  28. private System.Windows.Forms.Label lblVoltageLabel;
  29. private System.Windows.Forms.Label lblVoltageValue;
  30. private System.Windows.Forms.Label lblCurrentLabel;
  31. private System.Windows.Forms.Label lblCurrentValue;
  32. private System.Windows.Forms.Label lblPowerLabel;
  33. private System.Windows.Forms.Label lblPowerValue;
  34. private System.Windows.Forms.Label lblFrequencyLabel;
  35. private System.Windows.Forms.Label lblFrequencyValue;
  36. private System.Windows.Forms.Label lblPFLabel;
  37. private System.Windows.Forms.Label lblPFValue;
  38. // SCPI Panel
  39. private System.Windows.Forms.GroupBox grpScpi;
  40. private System.Windows.Forms.Label lblCommandCategory;
  41. private System.Windows.Forms.ComboBox cmbCommandCategory;
  42. private System.Windows.Forms.ListBox lstCommands;
  43. private System.Windows.Forms.TextBox txtCommandDesc;
  44. private System.Windows.Forms.Button btnUseCommand;
  45. private System.Windows.Forms.TextBox txtScpiCommand;
  46. private System.Windows.Forms.Button btnSendCommand;
  47. private System.Windows.Forms.Button btnToggleMeasure;
  48. // Log Panel
  49. private System.Windows.Forms.GroupBox grpLog;
  50. private System.Windows.Forms.TextBox txtLog;
  51. private System.Windows.Forms.Button btnClearLog;
  52. protected override void Dispose(bool disposing)
  53. {
  54. if (disposing && (components != null))
  55. {
  56. components.Dispose();
  57. }
  58. base.Dispose(disposing);
  59. }
  60. private void InitializeComponent()
  61. {
  62. this.lblStatusTitle = new System.Windows.Forms.Label();
  63. this.lblStatus = new System.Windows.Forms.Label();
  64. this.grpControl = new System.Windows.Forms.GroupBox();
  65. this.lblVoltage = new System.Windows.Forms.Label();
  66. this.numVoltage = new System.Windows.Forms.NumericUpDown();
  67. this.btnSetVoltage = new System.Windows.Forms.Button();
  68. this.lblFrequency = new System.Windows.Forms.Label();
  69. this.numFrequency = new System.Windows.Forms.NumericUpDown();
  70. this.btnSetFrequency = new System.Windows.Forms.Button();
  71. this.lblCurrent = new System.Windows.Forms.Label();
  72. this.numCurrent = new System.Windows.Forms.NumericUpDown();
  73. this.btnSetCurrent = new System.Windows.Forms.Button();
  74. this.lblVoltageRange = new System.Windows.Forms.Label();
  75. this.cmbVoltageRange = new System.Windows.Forms.ComboBox();
  76. this.lblWaveform = new System.Windows.Forms.Label();
  77. this.cmbWaveform = new System.Windows.Forms.ComboBox();
  78. this.chkOutput = new System.Windows.Forms.CheckBox();
  79. this.btnReset = new System.Windows.Forms.Button();
  80. this.grpMeasure = new System.Windows.Forms.GroupBox();
  81. this.lblVoltageLabel = new System.Windows.Forms.Label();
  82. this.lblVoltageValue = new System.Windows.Forms.Label();
  83. this.lblCurrentLabel = new System.Windows.Forms.Label();
  84. this.lblCurrentValue = new System.Windows.Forms.Label();
  85. this.lblPowerLabel = new System.Windows.Forms.Label();
  86. this.lblPowerValue = new System.Windows.Forms.Label();
  87. this.lblFrequencyLabel = new System.Windows.Forms.Label();
  88. this.lblFrequencyValue = new System.Windows.Forms.Label();
  89. this.lblPFLabel = new System.Windows.Forms.Label();
  90. this.lblPFValue = new System.Windows.Forms.Label();
  91. this.grpScpi = new System.Windows.Forms.GroupBox();
  92. this.lblCommandCategory = new System.Windows.Forms.Label();
  93. this.cmbCommandCategory = new System.Windows.Forms.ComboBox();
  94. this.lstCommands = new System.Windows.Forms.ListBox();
  95. this.txtCommandDesc = new System.Windows.Forms.TextBox();
  96. this.btnUseCommand = new System.Windows.Forms.Button();
  97. this.txtScpiCommand = new System.Windows.Forms.TextBox();
  98. this.btnSendCommand = new System.Windows.Forms.Button();
  99. this.btnToggleMeasure = new System.Windows.Forms.Button();
  100. this.grpLog = new System.Windows.Forms.GroupBox();
  101. this.txtLog = new System.Windows.Forms.TextBox();
  102. this.btnClearLog = new System.Windows.Forms.Button();
  103. this.grpControl.SuspendLayout();
  104. ((System.ComponentModel.ISupportInitialize)(this.numVoltage)).BeginInit();
  105. ((System.ComponentModel.ISupportInitialize)(this.numFrequency)).BeginInit();
  106. ((System.ComponentModel.ISupportInitialize)(this.numCurrent)).BeginInit();
  107. this.grpMeasure.SuspendLayout();
  108. this.grpScpi.SuspendLayout();
  109. this.grpLog.SuspendLayout();
  110. this.SuspendLayout();
  111. // lblStatusTitle
  112. this.lblStatusTitle.AutoSize = true;
  113. this.lblStatusTitle.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Bold);
  114. this.lblStatusTitle.Location = new System.Drawing.Point(12, 12);
  115. this.lblStatusTitle.Text = "设备状态:";
  116. // lblStatus
  117. this.lblStatus.AutoSize = true;
  118. this.lblStatus.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Bold);
  119. this.lblStatus.ForeColor = System.Drawing.Color.Red;
  120. this.lblStatus.Location = new System.Drawing.Point(85, 12);
  121. this.lblStatus.Text = "未连接";
  122. // grpControl
  123. this.grpControl.Controls.Add(this.lblVoltage);
  124. this.grpControl.Controls.Add(this.numVoltage);
  125. this.grpControl.Controls.Add(this.btnSetVoltage);
  126. this.grpControl.Controls.Add(this.lblFrequency);
  127. this.grpControl.Controls.Add(this.numFrequency);
  128. this.grpControl.Controls.Add(this.btnSetFrequency);
  129. this.grpControl.Controls.Add(this.lblCurrent);
  130. this.grpControl.Controls.Add(this.numCurrent);
  131. this.grpControl.Controls.Add(this.btnSetCurrent);
  132. this.grpControl.Controls.Add(this.lblVoltageRange);
  133. this.grpControl.Controls.Add(this.cmbVoltageRange);
  134. this.grpControl.Controls.Add(this.lblWaveform);
  135. this.grpControl.Controls.Add(this.cmbWaveform);
  136. this.grpControl.Controls.Add(this.chkOutput);
  137. this.grpControl.Controls.Add(this.btnReset);
  138. this.grpControl.Location = new System.Drawing.Point(12, 35);
  139. this.grpControl.Name = "grpControl";
  140. this.grpControl.Size = new System.Drawing.Size(320, 280);
  141. this.grpControl.TabStop = false;
  142. this.grpControl.Text = "控制面板";
  143. // lblVoltage
  144. this.lblVoltage.AutoSize = true;
  145. this.lblVoltage.Location = new System.Drawing.Point(15, 30);
  146. this.lblVoltage.Text = "电压(V):";
  147. // numVoltage
  148. this.numVoltage.DecimalPlaces = 1;
  149. this.numVoltage.Location = new System.Drawing.Point(95, 28);
  150. this.numVoltage.Maximum = new decimal(new int[] { 350, 0, 0, 0 });
  151. this.numVoltage.Size = new System.Drawing.Size(110, 23);
  152. this.numVoltage.Value = new decimal(new int[] { 220, 0, 0, 0 });
  153. // btnSetVoltage
  154. this.btnSetVoltage.Location = new System.Drawing.Point(215, 27);
  155. this.btnSetVoltage.Size = new System.Drawing.Size(90, 27);
  156. this.btnSetVoltage.Text = "设置";
  157. this.btnSetVoltage.Click += new System.EventHandler(this.btnSetVoltage_Click);
  158. // lblFrequency
  159. this.lblFrequency.AutoSize = true;
  160. this.lblFrequency.Location = new System.Drawing.Point(15, 65);
  161. this.lblFrequency.Text = "频率(Hz):";
  162. // numFrequency
  163. this.numFrequency.DecimalPlaces = 1;
  164. this.numFrequency.Location = new System.Drawing.Point(95, 63);
  165. this.numFrequency.Maximum = new decimal(new int[] { 500, 0, 0, 0 });
  166. this.numFrequency.Minimum = new decimal(new int[] { 45, 0, 0, 0 });
  167. this.numFrequency.Size = new System.Drawing.Size(110, 23);
  168. this.numFrequency.Value = new decimal(new int[] { 50, 0, 0, 0 });
  169. // btnSetFrequency
  170. this.btnSetFrequency.Location = new System.Drawing.Point(215, 62);
  171. this.btnSetFrequency.Size = new System.Drawing.Size(90, 27);
  172. this.btnSetFrequency.Text = "设置";
  173. this.btnSetFrequency.Click += new System.EventHandler(this.btnSetFrequency_Click);
  174. // lblCurrent
  175. this.lblCurrent.AutoSize = true;
  176. this.lblCurrent.Location = new System.Drawing.Point(15, 100);
  177. this.lblCurrent.Text = "电流限值(A):";
  178. // numCurrent
  179. this.numCurrent.DecimalPlaces = 2;
  180. this.numCurrent.Location = new System.Drawing.Point(95, 98);
  181. this.numCurrent.Maximum = new decimal(new int[] { 20, 0, 0, 0 });
  182. this.numCurrent.Size = new System.Drawing.Size(110, 23);
  183. this.numCurrent.Value = new decimal(new int[] { 5, 0, 0, 0 });
  184. // btnSetCurrent
  185. this.btnSetCurrent.Location = new System.Drawing.Point(215, 97);
  186. this.btnSetCurrent.Size = new System.Drawing.Size(90, 27);
  187. this.btnSetCurrent.Text = "设置";
  188. this.btnSetCurrent.Click += new System.EventHandler(this.btnSetCurrent_Click);
  189. // lblVoltageRange
  190. this.lblVoltageRange.AutoSize = true;
  191. this.lblVoltageRange.Location = new System.Drawing.Point(15, 135);
  192. this.lblVoltageRange.Text = "电压量程:";
  193. // cmbVoltageRange
  194. this.cmbVoltageRange.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  195. this.cmbVoltageRange.Items.AddRange(new object[] { "低档 (0-175V)", "高档 (0-350V)" });
  196. this.cmbVoltageRange.Location = new System.Drawing.Point(95, 132);
  197. this.cmbVoltageRange.Size = new System.Drawing.Size(210, 25);
  198. this.cmbVoltageRange.SelectedIndex = 1;
  199. this.cmbVoltageRange.SelectedIndexChanged += new System.EventHandler(this.cmbVoltageRange_SelectedIndexChanged);
  200. // lblWaveform
  201. this.lblWaveform.AutoSize = true;
  202. this.lblWaveform.Location = new System.Drawing.Point(15, 170);
  203. this.lblWaveform.Text = "输出波形:";
  204. // cmbWaveform
  205. this.cmbWaveform.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  206. this.cmbWaveform.Items.AddRange(new object[] { "正弦波", "方波", "三角波" });
  207. this.cmbWaveform.Location = new System.Drawing.Point(95, 167);
  208. this.cmbWaveform.Size = new System.Drawing.Size(210, 25);
  209. this.cmbWaveform.SelectedIndex = 0;
  210. this.cmbWaveform.SelectedIndexChanged += new System.EventHandler(this.cmbWaveform_SelectedIndexChanged);
  211. // chkOutput
  212. this.chkOutput.Appearance = System.Windows.Forms.Appearance.Button;
  213. this.chkOutput.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F, System.Drawing.FontStyle.Bold);
  214. this.chkOutput.Location = new System.Drawing.Point(18, 210);
  215. this.chkOutput.Size = new System.Drawing.Size(140, 50);
  216. this.chkOutput.Text = "输出 OFF";
  217. this.chkOutput.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  218. this.chkOutput.CheckedChanged += new System.EventHandler(this.chkOutput_CheckedChanged);
  219. // btnReset
  220. this.btnReset.Location = new System.Drawing.Point(165, 210);
  221. this.btnReset.Size = new System.Drawing.Size(140, 50);
  222. this.btnReset.Text = "重置设备";
  223. this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
  224. // grpMeasure
  225. this.grpMeasure.Controls.Add(this.lblVoltageLabel);
  226. this.grpMeasure.Controls.Add(this.lblVoltageValue);
  227. this.grpMeasure.Controls.Add(this.lblCurrentLabel);
  228. this.grpMeasure.Controls.Add(this.lblCurrentValue);
  229. this.grpMeasure.Controls.Add(this.lblPowerLabel);
  230. this.grpMeasure.Controls.Add(this.lblPowerValue);
  231. this.grpMeasure.Controls.Add(this.lblFrequencyLabel);
  232. this.grpMeasure.Controls.Add(this.lblFrequencyValue);
  233. this.grpMeasure.Controls.Add(this.lblPFLabel);
  234. this.grpMeasure.Controls.Add(this.lblPFValue);
  235. this.grpMeasure.Location = new System.Drawing.Point(345, 35);
  236. this.grpMeasure.Size = new System.Drawing.Size(240, 170);
  237. this.grpMeasure.TabStop = false;
  238. this.grpMeasure.Text = "实时测量";
  239. // lblVoltageLabel
  240. this.lblVoltageLabel.AutoSize = true;
  241. this.lblVoltageLabel.Location = new System.Drawing.Point(15, 30);
  242. this.lblVoltageLabel.Text = "实测电压:";
  243. // lblVoltageValue
  244. this.lblVoltageValue.AutoSize = true;
  245. this.lblVoltageValue.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Bold);
  246. this.lblVoltageValue.ForeColor = System.Drawing.Color.Blue;
  247. this.lblVoltageValue.Location = new System.Drawing.Point(100, 28);
  248. this.lblVoltageValue.Text = "0.00 V";
  249. // lblCurrentLabel
  250. this.lblCurrentLabel.AutoSize = true;
  251. this.lblCurrentLabel.Location = new System.Drawing.Point(15, 55);
  252. this.lblCurrentLabel.Text = "实测电流:";
  253. // lblCurrentValue
  254. this.lblCurrentValue.AutoSize = true;
  255. this.lblCurrentValue.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Bold);
  256. this.lblCurrentValue.ForeColor = System.Drawing.Color.Blue;
  257. this.lblCurrentValue.Location = new System.Drawing.Point(100, 53);
  258. this.lblCurrentValue.Text = "0.000 A";
  259. // lblPowerLabel
  260. this.lblPowerLabel.AutoSize = true;
  261. this.lblPowerLabel.Location = new System.Drawing.Point(15, 80);
  262. this.lblPowerLabel.Text = "实测功率:";
  263. // lblPowerValue
  264. this.lblPowerValue.AutoSize = true;
  265. this.lblPowerValue.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Bold);
  266. this.lblPowerValue.ForeColor = System.Drawing.Color.Blue;
  267. this.lblPowerValue.Location = new System.Drawing.Point(100, 78);
  268. this.lblPowerValue.Text = "0.00 W";
  269. // lblFrequencyLabel
  270. this.lblFrequencyLabel.AutoSize = true;
  271. this.lblFrequencyLabel.Location = new System.Drawing.Point(15, 105);
  272. this.lblFrequencyLabel.Text = "实测频率:";
  273. // lblFrequencyValue
  274. this.lblFrequencyValue.AutoSize = true;
  275. this.lblFrequencyValue.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Bold);
  276. this.lblFrequencyValue.ForeColor = System.Drawing.Color.Blue;
  277. this.lblFrequencyValue.Location = new System.Drawing.Point(100, 103);
  278. this.lblFrequencyValue.Text = "0.00 Hz";
  279. // lblPFLabel
  280. this.lblPFLabel.AutoSize = true;
  281. this.lblPFLabel.Location = new System.Drawing.Point(15, 130);
  282. this.lblPFLabel.Text = "功率因数:";
  283. // lblPFValue
  284. this.lblPFValue.AutoSize = true;
  285. this.lblPFValue.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Bold);
  286. this.lblPFValue.ForeColor = System.Drawing.Color.Blue;
  287. this.lblPFValue.Location = new System.Drawing.Point(100, 128);
  288. this.lblPFValue.Text = "0.000";
  289. // grpScpi
  290. this.grpScpi.Controls.Add(this.lblCommandCategory);
  291. this.grpScpi.Controls.Add(this.cmbCommandCategory);
  292. this.grpScpi.Controls.Add(this.lstCommands);
  293. this.grpScpi.Controls.Add(this.txtCommandDesc);
  294. this.grpScpi.Controls.Add(this.btnUseCommand);
  295. this.grpScpi.Controls.Add(this.txtScpiCommand);
  296. this.grpScpi.Controls.Add(this.btnSendCommand);
  297. this.grpScpi.Controls.Add(this.btnToggleMeasure);
  298. this.grpScpi.Location = new System.Drawing.Point(345, 185);
  299. this.grpScpi.Size = new System.Drawing.Size(240, 230);
  300. this.grpScpi.TabStop = false;
  301. this.grpScpi.Text = "SCPI 命令";
  302. // lblCommandCategory
  303. this.lblCommandCategory.AutoSize = true;
  304. this.lblCommandCategory.Location = new System.Drawing.Point(10, 25);
  305. this.lblCommandCategory.Text = "分类:";
  306. // cmbCommandCategory
  307. this.cmbCommandCategory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  308. this.cmbCommandCategory.Location = new System.Drawing.Point(50, 22);
  309. this.cmbCommandCategory.Size = new System.Drawing.Size(175, 25);
  310. this.cmbCommandCategory.SelectedIndexChanged += new System.EventHandler(this.cmbCommandCategory_SelectedIndexChanged);
  311. // lstCommands
  312. this.lstCommands.Font = new System.Drawing.Font("Consolas", 8F);
  313. this.lstCommands.Location = new System.Drawing.Point(10, 55);
  314. this.lstCommands.Size = new System.Drawing.Size(215, 56);
  315. this.lstCommands.SelectedIndexChanged += new System.EventHandler(this.lstCommands_SelectedIndexChanged);
  316. // txtCommandDesc
  317. this.txtCommandDesc.BackColor = System.Drawing.Color.LightYellow;
  318. this.txtCommandDesc.Font = new System.Drawing.Font("Microsoft YaHei UI", 8F);
  319. this.txtCommandDesc.Location = new System.Drawing.Point(10, 115);
  320. this.txtCommandDesc.Multiline = true;
  321. this.txtCommandDesc.ReadOnly = true;
  322. this.txtCommandDesc.Size = new System.Drawing.Size(150, 40);
  323. this.txtCommandDesc.Text = "请选择命令";
  324. // btnUseCommand
  325. this.btnUseCommand.Location = new System.Drawing.Point(165, 115);
  326. this.btnUseCommand.Size = new System.Drawing.Size(60, 40);
  327. this.btnUseCommand.Text = "使用";
  328. this.btnUseCommand.Click += new System.EventHandler(this.btnUseCommand_Click);
  329. // txtScpiCommand
  330. this.txtScpiCommand.Location = new System.Drawing.Point(10, 162);
  331. this.txtScpiCommand.PlaceholderText = "输入命令...";
  332. this.txtScpiCommand.Size = new System.Drawing.Size(140, 23);
  333. // btnSendCommand
  334. this.btnSendCommand.Location = new System.Drawing.Point(155, 160);
  335. this.btnSendCommand.Size = new System.Drawing.Size(70, 27);
  336. this.btnSendCommand.Text = "发送";
  337. this.btnSendCommand.Click += new System.EventHandler(this.btnSendCommand_Click);
  338. // btnToggleMeasure - 放在新的一行
  339. this.btnToggleMeasure.Location = new System.Drawing.Point(10, 192);
  340. this.btnToggleMeasure.Size = new System.Drawing.Size(215, 27);
  341. this.btnToggleMeasure.Text = "恢复测量";
  342. this.btnToggleMeasure.BackColor = System.Drawing.Color.LightGreen;
  343. this.btnToggleMeasure.Click += new System.EventHandler(this.btnToggleMeasure_Click);
  344. // grpLog
  345. this.grpLog.Controls.Add(this.txtLog);
  346. this.grpLog.Controls.Add(this.btnClearLog);
  347. this.grpLog.Location = new System.Drawing.Point(12, 320);
  348. this.grpLog.Size = new System.Drawing.Size(320, 95);
  349. this.grpLog.TabStop = false;
  350. this.grpLog.Text = "操作日志";
  351. // txtLog
  352. this.txtLog.Font = new System.Drawing.Font("Consolas", 8F);
  353. this.txtLog.Location = new System.Drawing.Point(10, 22);
  354. this.txtLog.Multiline = true;
  355. this.txtLog.ReadOnly = true;
  356. this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  357. this.txtLog.Size = new System.Drawing.Size(300, 40);
  358. // btnClearLog
  359. this.btnClearLog.Location = new System.Drawing.Point(10, 65);
  360. this.btnClearLog.Size = new System.Drawing.Size(300, 23);
  361. this.btnClearLog.Text = "清空日志";
  362. this.btnClearLog.Click += new System.EventHandler(this.btnClearLog_Click);
  363. // ManualTestForm
  364. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  365. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  366. this.ClientSize = new System.Drawing.Size(600, 425);
  367. this.Controls.Add(this.lblStatusTitle);
  368. this.Controls.Add(this.lblStatus);
  369. this.Controls.Add(this.grpControl);
  370. this.Controls.Add(this.grpMeasure);
  371. this.Controls.Add(this.grpScpi);
  372. this.Controls.Add(this.grpLog);
  373. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  374. this.MaximizeBox = false;
  375. this.Name = "ManualTestForm";
  376. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  377. this.Text = "手动测试";
  378. this.grpControl.ResumeLayout(false);
  379. this.grpControl.PerformLayout();
  380. ((System.ComponentModel.ISupportInitialize)(this.numVoltage)).EndInit();
  381. ((System.ComponentModel.ISupportInitialize)(this.numFrequency)).EndInit();
  382. ((System.ComponentModel.ISupportInitialize)(this.numCurrent)).EndInit();
  383. this.grpMeasure.ResumeLayout(false);
  384. this.grpMeasure.PerformLayout();
  385. this.grpScpi.ResumeLayout(false);
  386. this.grpScpi.PerformLayout();
  387. this.grpLog.ResumeLayout(false);
  388. this.grpLog.PerformLayout();
  389. this.ResumeLayout(false);
  390. this.PerformLayout();
  391. }
  392. }
  393. }