ProgMgrInfoForm.designer.cs 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857
  1. namespace OTSMeasureApp
  2. {
  3. partial class ProgMgrInfoForm
  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.groupBox1 = new System.Windows.Forms.GroupBox();
  29. this.IDC_BUTTON_STAGE = new System.Windows.Forms.Button();
  30. this.IDC_COMBO_STAGE = new System.Windows.Forms.ComboBox();
  31. this.label41 = new System.Windows.Forms.Label();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.groupBox2 = new System.Windows.Forms.GroupBox();
  34. this.IDC_EDIT_YEND = new System.Windows.Forms.TextBox();
  35. this.IDC_EDIT_YSTART = new System.Windows.Forms.TextBox();
  36. this.IDC_EDIT_MINMAG = new System.Windows.Forms.TextBox();
  37. this.IDC_EDIT_SCREENWIDTH = new System.Windows.Forms.TextBox();
  38. this.IDC_EDIT_XEND = new System.Windows.Forms.TextBox();
  39. this.IDC_EDIT_XSTART = new System.Windows.Forms.TextBox();
  40. this.label36 = new System.Windows.Forms.Label();
  41. this.label6 = new System.Windows.Forms.Label();
  42. this.IDC_COMBO_YDIRECT = new System.Windows.Forms.ComboBox();
  43. this.IDC_COMBO_XDIREC = new System.Windows.Forms.ComboBox();
  44. this.label5 = new System.Windows.Forms.Label();
  45. this.label35 = new System.Windows.Forms.Label();
  46. this.label34 = new System.Windows.Forms.Label();
  47. this.label4 = new System.Windows.Forms.Label();
  48. this.label3 = new System.Windows.Forms.Label();
  49. this.label2 = new System.Windows.Forms.Label();
  50. this.groupBox3 = new System.Windows.Forms.GroupBox();
  51. this.tB_StopMode = new System.Windows.Forms.TextBox();
  52. this.btn_StopMode = new System.Windows.Forms.Button();
  53. this.label13 = new System.Windows.Forms.Label();
  54. this.IDC_COMBO_IMGSIZE = new System.Windows.Forms.ComboBox();
  55. this.IDC_COMBO_IMGSCANSPEED = new System.Windows.Forms.ComboBox();
  56. this.IDC_COMBO_FETCHIMGMODE = new System.Windows.Forms.ComboBox();
  57. this.label12 = new System.Windows.Forms.Label();
  58. this.label11 = new System.Windows.Forms.Label();
  59. this.label7 = new System.Windows.Forms.Label();
  60. this.IDC_EDIT_STOP_INCA_NUM = new System.Windows.Forms.TextBox();
  61. this.IDC_EDIT_STOP_FIELD_NUM = new System.Windows.Forms.TextBox();
  62. this.IDC_EDIT_STOP_TIME = new System.Windows.Forms.TextBox();
  63. this.label10 = new System.Windows.Forms.Label();
  64. this.label9 = new System.Windows.Forms.Label();
  65. this.label8 = new System.Windows.Forms.Label();
  66. this.IDC_IMAGE_SIZE_SWITCH = new System.Windows.Forms.CheckBox();
  67. this.IDC_SCAN_SPEED_SWITCH = new System.Windows.Forms.CheckBox();
  68. this.IDC_FETCH_IMAGE_SWITCH = new System.Windows.Forms.CheckBox();
  69. this.IDC_STOP_PARTICAL_SWITCH = new System.Windows.Forms.CheckBox();
  70. this.IDC_STOP_FIELD_SWITCH = new System.Windows.Forms.CheckBox();
  71. this.IDC_STOP_TIME_SWITCH = new System.Windows.Forms.CheckBox();
  72. this.IDC_STOP_MODE_SWITCH = new System.Windows.Forms.CheckBox();
  73. this.groupBox4 = new System.Windows.Forms.GroupBox();
  74. this.IDC_COMBO_STDSelect = new System.Windows.Forms.ComboBox();
  75. this.IDC_SYS_LIB = new System.Windows.Forms.CheckBox();
  76. this.label17 = new System.Windows.Forms.Label();
  77. this.tBMeasArea = new System.Windows.Forms.TextBox();
  78. this.cBMeasShape = new System.Windows.Forms.ComboBox();
  79. this.lbArea = new System.Windows.Forms.Label();
  80. this.lbShape = new System.Windows.Forms.Label();
  81. this.IDC_COMBO_TECHNOLOGY = new System.Windows.Forms.ComboBox();
  82. this.label42 = new System.Windows.Forms.Label();
  83. this.IDC_MEAS_SWITCH = new System.Windows.Forms.CheckBox();
  84. this.IDC_BUTTON_KLFX = new System.Windows.Forms.Button();
  85. this.label19 = new System.Windows.Forms.Label();
  86. this.label18 = new System.Windows.Forms.Label();
  87. this.label16 = new System.Windows.Forms.Label();
  88. this.IDC_EDIT_ANALYSESTDLIBPATH = new System.Windows.Forms.TextBox();
  89. this.IDC_EDIT_MEASUREPARAMPATH = new System.Windows.Forms.TextBox();
  90. this.IDC_EDIT_SAMPLENAME = new System.Windows.Forms.TextBox();
  91. this.label15 = new System.Windows.Forms.Label();
  92. this.label14 = new System.Windows.Forms.Label();
  93. this.IDC_BUTTON_MEASPRAMPATHSET = new System.Windows.Forms.Button();
  94. this.groupBox5 = new System.Windows.Forms.GroupBox();
  95. this.IDC_COMBO_CorrosionExpansionCoefficient = new System.Windows.Forms.ComboBox();
  96. this.label49 = new System.Windows.Forms.Label();
  97. this.IDC_COMBO_AUTOBGREMOVETYP = new System.Windows.Forms.ComboBox();
  98. this.label_Auto = new System.Windows.Forms.Label();
  99. this.IDC_COMBO_BGREMOVETYPE = new System.Windows.Forms.ComboBox();
  100. this.label43 = new System.Windows.Forms.Label();
  101. this.label22 = new System.Windows.Forms.Label();
  102. this.label21 = new System.Windows.Forms.Label();
  103. this.label25 = new System.Windows.Forms.Label();
  104. this.IDC_EDIT_PARTMAX = new System.Windows.Forms.TextBox();
  105. this.IDC_EDIT_PARTMIN = new System.Windows.Forms.TextBox();
  106. this.IDC_EDIT_BACKMAX = new System.Windows.Forms.TextBox();
  107. this.IDC_EDIT_BACKMIN = new System.Windows.Forms.TextBox();
  108. this.IDC_EDIT_PARTAREAMAX = new System.Windows.Forms.TextBox();
  109. this.IDC_EDIT_PARTAREAMIN = new System.Windows.Forms.TextBox();
  110. this.label24 = new System.Windows.Forms.Label();
  111. this.label28 = new System.Windows.Forms.Label();
  112. this.label27 = new System.Windows.Forms.Label();
  113. this.label26 = new System.Windows.Forms.Label();
  114. this.label23 = new System.Windows.Forms.Label();
  115. this.label20 = new System.Windows.Forms.Label();
  116. this.IDC_PART_GRAY_MIN_SWITCH = new System.Windows.Forms.CheckBox();
  117. this.IDC_BACK_MIN_SWITCH = new System.Windows.Forms.CheckBox();
  118. this.IDC_PART_MIN_SWITCH = new System.Windows.Forms.CheckBox();
  119. this.IDC_PART_GRAY_MAX_SWITCH = new System.Windows.Forms.CheckBox();
  120. this.IDC_BACK_MAX_SWITCH = new System.Windows.Forms.CheckBox();
  121. this.IDC_PART_MAX_SWITCH = new System.Windows.Forms.CheckBox();
  122. this.groupBox6 = new System.Windows.Forms.GroupBox();
  123. this.IDC_EDIT_XrayLimit = new System.Windows.Forms.TextBox();
  124. this.label47 = new System.Windows.Forms.Label();
  125. this.IDC_EDIT_SmallPartAQTime = new System.Windows.Forms.TextBox();
  126. this.label45 = new System.Windows.Forms.Label();
  127. this.label46 = new System.Windows.Forms.Label();
  128. this.IDC_EDIT_QuantifyMinSize = new System.Windows.Forms.TextBox();
  129. this.label37 = new System.Windows.Forms.Label();
  130. this.label40 = new System.Windows.Forms.Label();
  131. this.IDC_USINGXRAY_LIB = new System.Windows.Forms.CheckBox();
  132. this.label44 = new System.Windows.Forms.Label();
  133. this.IDC_TEXTBOX_SEARCHXRAYSPEED_TIME = new System.Windows.Forms.TextBox();
  134. this.label38 = new System.Windows.Forms.Label();
  135. this.label30 = new System.Windows.Forms.Label();
  136. this.label29 = new System.Windows.Forms.Label();
  137. this.IDC_EDIT_SEARCHXRAYCOUNTLIMIT = new System.Windows.Forms.TextBox();
  138. this.IDC_COMBO_SEARCHXRAYSPEED = new System.Windows.Forms.ComboBox();
  139. this.IDC_TEXTBOX_ANALYXRAYSPEED_TIME = new System.Windows.Forms.TextBox();
  140. this.IDC_COMBO_ANALYXRAYSPEED = new System.Windows.Forms.ComboBox();
  141. this.label32 = new System.Windows.Forms.Label();
  142. this.label39 = new System.Windows.Forms.Label();
  143. this.IDC_COMBO_XRAYSCANMODE = new System.Windows.Forms.ComboBox();
  144. this.IDC_EDIT_ANALYXRAYAIMVALUE = new System.Windows.Forms.TextBox();
  145. this.label33 = new System.Windows.Forms.Label();
  146. this.label31 = new System.Windows.Forms.Label();
  147. this.IDC_XRAY_COUNT_SWITCH = new System.Windows.Forms.CheckBox();
  148. this.IDC_XRAY_TIME_SWITCH = new System.Windows.Forms.CheckBox();
  149. this.IDC_XRAY_MODE_SWITCH = new System.Windows.Forms.CheckBox();
  150. this.btnok = new System.Windows.Forms.Button();
  151. this.btncancel = new System.Windows.Forms.Button();
  152. this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
  153. this.lbModelSel = new System.Windows.Forms.Label();
  154. this.IDC_COMBO_Model = new System.Windows.Forms.ComboBox();
  155. this.groupBox7 = new System.Windows.Forms.GroupBox();
  156. this.IDC_EDIT_STOP_INCA_AREA = new System.Windows.Forms.TextBox();
  157. this.label48 = new System.Windows.Forms.Label();
  158. this.label50 = new System.Windows.Forms.Label();
  159. this.label51 = new System.Windows.Forms.Label();
  160. this.IDC_EDIT_Overlap = new System.Windows.Forms.TextBox();
  161. this.groupBox1.SuspendLayout();
  162. this.groupBox2.SuspendLayout();
  163. this.groupBox3.SuspendLayout();
  164. this.groupBox4.SuspendLayout();
  165. this.groupBox5.SuspendLayout();
  166. this.groupBox6.SuspendLayout();
  167. this.groupBox7.SuspendLayout();
  168. this.SuspendLayout();
  169. //
  170. // groupBox1
  171. //
  172. this.groupBox1.Controls.Add(this.IDC_BUTTON_STAGE);
  173. this.groupBox1.Controls.Add(this.IDC_COMBO_STAGE);
  174. this.groupBox1.Controls.Add(this.label41);
  175. this.groupBox1.Controls.Add(this.label1);
  176. this.groupBox1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  177. this.groupBox1.Location = new System.Drawing.Point(6, 63);
  178. this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
  179. this.groupBox1.Name = "groupBox1";
  180. this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
  181. this.groupBox1.Size = new System.Drawing.Size(301, 65);
  182. this.groupBox1.TabIndex = 0;
  183. this.groupBox1.TabStop = false;
  184. this.groupBox1.Text = "样品台";
  185. //
  186. // IDC_BUTTON_STAGE
  187. //
  188. this.IDC_BUTTON_STAGE.Location = new System.Drawing.Point(122, 19);
  189. this.IDC_BUTTON_STAGE.Margin = new System.Windows.Forms.Padding(2);
  190. this.IDC_BUTTON_STAGE.Name = "IDC_BUTTON_STAGE";
  191. this.IDC_BUTTON_STAGE.Size = new System.Drawing.Size(37, 19);
  192. this.IDC_BUTTON_STAGE.TabIndex = 30;
  193. this.IDC_BUTTON_STAGE.Text = "...";
  194. this.IDC_BUTTON_STAGE.UseVisualStyleBackColor = true;
  195. this.IDC_BUTTON_STAGE.Click += new System.EventHandler(this.IDC_BUTTON_STAGE_Click);
  196. //
  197. // IDC_COMBO_STAGE
  198. //
  199. this.IDC_COMBO_STAGE.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  200. this.IDC_COMBO_STAGE.FormattingEnabled = true;
  201. this.IDC_COMBO_STAGE.Location = new System.Drawing.Point(122, 40);
  202. this.IDC_COMBO_STAGE.Margin = new System.Windows.Forms.Padding(2);
  203. this.IDC_COMBO_STAGE.Name = "IDC_COMBO_STAGE";
  204. this.IDC_COMBO_STAGE.Size = new System.Drawing.Size(137, 20);
  205. this.IDC_COMBO_STAGE.TabIndex = 20;
  206. this.IDC_COMBO_STAGE.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_STAGE_SelectedIndexChanged);
  207. //
  208. // label41
  209. //
  210. this.label41.AutoSize = true;
  211. this.label41.Location = new System.Drawing.Point(5, 23);
  212. this.label41.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  213. this.label41.Name = "label41";
  214. this.label41.Size = new System.Drawing.Size(113, 12);
  215. this.label41.TabIndex = 10;
  216. this.label41.Text = "默认样品台配置编辑";
  217. //
  218. // label1
  219. //
  220. this.label1.AutoSize = true;
  221. this.label1.Location = new System.Drawing.Point(5, 42);
  222. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  223. this.label1.Name = "label1";
  224. this.label1.Size = new System.Drawing.Size(89, 12);
  225. this.label1.TabIndex = 10;
  226. this.label1.Text = "样品台模板选择";
  227. //
  228. // groupBox2
  229. //
  230. this.groupBox2.Controls.Add(this.IDC_EDIT_YEND);
  231. this.groupBox2.Controls.Add(this.IDC_EDIT_YSTART);
  232. this.groupBox2.Controls.Add(this.IDC_EDIT_MINMAG);
  233. this.groupBox2.Controls.Add(this.IDC_EDIT_SCREENWIDTH);
  234. this.groupBox2.Controls.Add(this.IDC_EDIT_XEND);
  235. this.groupBox2.Controls.Add(this.IDC_EDIT_XSTART);
  236. this.groupBox2.Controls.Add(this.label36);
  237. this.groupBox2.Controls.Add(this.label6);
  238. this.groupBox2.Controls.Add(this.IDC_COMBO_YDIRECT);
  239. this.groupBox2.Controls.Add(this.IDC_COMBO_XDIREC);
  240. this.groupBox2.Controls.Add(this.label5);
  241. this.groupBox2.Controls.Add(this.label35);
  242. this.groupBox2.Controls.Add(this.label34);
  243. this.groupBox2.Controls.Add(this.label4);
  244. this.groupBox2.Controls.Add(this.label3);
  245. this.groupBox2.Controls.Add(this.label2);
  246. this.groupBox2.Location = new System.Drawing.Point(334, 9);
  247. this.groupBox2.Margin = new System.Windows.Forms.Padding(2);
  248. this.groupBox2.Name = "groupBox2";
  249. this.groupBox2.Padding = new System.Windows.Forms.Padding(2);
  250. this.groupBox2.Size = new System.Drawing.Size(301, 169);
  251. this.groupBox2.TabIndex = 40;
  252. this.groupBox2.TabStop = false;
  253. this.groupBox2.Text = "SEM样品台信息";
  254. //
  255. // IDC_EDIT_YEND
  256. //
  257. this.IDC_EDIT_YEND.Location = new System.Drawing.Point(213, 109);
  258. this.IDC_EDIT_YEND.Margin = new System.Windows.Forms.Padding(2);
  259. this.IDC_EDIT_YEND.MaxLength = 10;
  260. this.IDC_EDIT_YEND.Name = "IDC_EDIT_YEND";
  261. this.IDC_EDIT_YEND.Size = new System.Drawing.Size(76, 21);
  262. this.IDC_EDIT_YEND.TabIndex = 220;
  263. this.IDC_EDIT_YEND.TextChanged += new System.EventHandler(this.IDC_EDIT_YEND_TextChanged);
  264. //
  265. // IDC_EDIT_YSTART
  266. //
  267. this.IDC_EDIT_YSTART.Location = new System.Drawing.Point(118, 109);
  268. this.IDC_EDIT_YSTART.Margin = new System.Windows.Forms.Padding(2);
  269. this.IDC_EDIT_YSTART.MaxLength = 10;
  270. this.IDC_EDIT_YSTART.Name = "IDC_EDIT_YSTART";
  271. this.IDC_EDIT_YSTART.Size = new System.Drawing.Size(77, 21);
  272. this.IDC_EDIT_YSTART.TabIndex = 200;
  273. this.IDC_EDIT_YSTART.TextChanged += new System.EventHandler(this.IDC_EDIT_YSTART_TextChanged);
  274. //
  275. // IDC_EDIT_MINMAG
  276. //
  277. this.IDC_EDIT_MINMAG.Location = new System.Drawing.Point(118, 133);
  278. this.IDC_EDIT_MINMAG.Margin = new System.Windows.Forms.Padding(2);
  279. this.IDC_EDIT_MINMAG.MaxLength = 10;
  280. this.IDC_EDIT_MINMAG.Name = "IDC_EDIT_MINMAG";
  281. this.IDC_EDIT_MINMAG.Size = new System.Drawing.Size(171, 21);
  282. this.IDC_EDIT_MINMAG.TabIndex = 222;
  283. this.IDC_EDIT_MINMAG.TextChanged += new System.EventHandler(this.IDC_EDIT_MINMAG_TextChanged);
  284. //
  285. // IDC_EDIT_SCREENWIDTH
  286. //
  287. this.IDC_EDIT_SCREENWIDTH.Location = new System.Drawing.Point(118, 19);
  288. this.IDC_EDIT_SCREENWIDTH.Margin = new System.Windows.Forms.Padding(2);
  289. this.IDC_EDIT_SCREENWIDTH.MaxLength = 20;
  290. this.IDC_EDIT_SCREENWIDTH.Name = "IDC_EDIT_SCREENWIDTH";
  291. this.IDC_EDIT_SCREENWIDTH.Size = new System.Drawing.Size(171, 21);
  292. this.IDC_EDIT_SCREENWIDTH.TabIndex = 60;
  293. this.IDC_EDIT_SCREENWIDTH.TextChanged += new System.EventHandler(this.IDC_EDIT_SCREENWIDTH_TextChanged);
  294. //
  295. // IDC_EDIT_XEND
  296. //
  297. this.IDC_EDIT_XEND.Location = new System.Drawing.Point(213, 64);
  298. this.IDC_EDIT_XEND.Margin = new System.Windows.Forms.Padding(2);
  299. this.IDC_EDIT_XEND.MaxLength = 10;
  300. this.IDC_EDIT_XEND.Name = "IDC_EDIT_XEND";
  301. this.IDC_EDIT_XEND.Size = new System.Drawing.Size(76, 21);
  302. this.IDC_EDIT_XEND.TabIndex = 160;
  303. this.IDC_EDIT_XEND.TextChanged += new System.EventHandler(this.IDC_EDIT_XEND_TextChanged);
  304. //
  305. // IDC_EDIT_XSTART
  306. //
  307. this.IDC_EDIT_XSTART.Location = new System.Drawing.Point(118, 65);
  308. this.IDC_EDIT_XSTART.Margin = new System.Windows.Forms.Padding(2);
  309. this.IDC_EDIT_XSTART.MaxLength = 10;
  310. this.IDC_EDIT_XSTART.Name = "IDC_EDIT_XSTART";
  311. this.IDC_EDIT_XSTART.Size = new System.Drawing.Size(77, 21);
  312. this.IDC_EDIT_XSTART.TabIndex = 140;
  313. this.IDC_EDIT_XSTART.TextChanged += new System.EventHandler(this.IDC_EDIT_XSTART_TextChanged);
  314. //
  315. // label36
  316. //
  317. this.label36.AutoSize = true;
  318. this.label36.Location = new System.Drawing.Point(2, 137);
  319. this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  320. this.label36.Name = "label36";
  321. this.label36.Size = new System.Drawing.Size(77, 12);
  322. this.label36.TabIndex = 221;
  323. this.label36.Text = "最小放大倍数";
  324. //
  325. // label6
  326. //
  327. this.label6.AutoSize = true;
  328. this.label6.Location = new System.Drawing.Point(3, 114);
  329. this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  330. this.label6.Name = "label6";
  331. this.label6.Size = new System.Drawing.Size(65, 12);
  332. this.label6.TabIndex = 190;
  333. this.label6.Text = "y轴行程/mm";
  334. //
  335. // IDC_COMBO_YDIRECT
  336. //
  337. this.IDC_COMBO_YDIRECT.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  338. this.IDC_COMBO_YDIRECT.FormattingEnabled = true;
  339. this.IDC_COMBO_YDIRECT.Location = new System.Drawing.Point(118, 87);
  340. this.IDC_COMBO_YDIRECT.Margin = new System.Windows.Forms.Padding(2);
  341. this.IDC_COMBO_YDIRECT.Name = "IDC_COMBO_YDIRECT";
  342. this.IDC_COMBO_YDIRECT.Size = new System.Drawing.Size(171, 20);
  343. this.IDC_COMBO_YDIRECT.TabIndex = 180;
  344. this.IDC_COMBO_YDIRECT.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_YDIRECT_SelectedIndexChanged);
  345. //
  346. // IDC_COMBO_XDIREC
  347. //
  348. this.IDC_COMBO_XDIREC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  349. this.IDC_COMBO_XDIREC.FormattingEnabled = true;
  350. this.IDC_COMBO_XDIREC.Location = new System.Drawing.Point(118, 42);
  351. this.IDC_COMBO_XDIREC.Margin = new System.Windows.Forms.Padding(2);
  352. this.IDC_COMBO_XDIREC.Name = "IDC_COMBO_XDIREC";
  353. this.IDC_COMBO_XDIREC.Size = new System.Drawing.Size(171, 20);
  354. this.IDC_COMBO_XDIREC.TabIndex = 80;
  355. this.IDC_COMBO_XDIREC.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_XDIREC_SelectedIndexChanged);
  356. //
  357. // label5
  358. //
  359. this.label5.AutoSize = true;
  360. this.label5.Location = new System.Drawing.Point(3, 89);
  361. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  362. this.label5.Name = "label5";
  363. this.label5.Size = new System.Drawing.Size(47, 12);
  364. this.label5.TabIndex = 170;
  365. this.label5.Text = "y轴方向";
  366. //
  367. // label35
  368. //
  369. this.label35.AutoSize = true;
  370. this.label35.Location = new System.Drawing.Point(198, 111);
  371. this.label35.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  372. this.label35.Name = "label35";
  373. this.label35.Size = new System.Drawing.Size(11, 12);
  374. this.label35.TabIndex = 210;
  375. this.label35.Text = "~";
  376. //
  377. // label34
  378. //
  379. this.label34.AutoSize = true;
  380. this.label34.Location = new System.Drawing.Point(198, 67);
  381. this.label34.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  382. this.label34.Name = "label34";
  383. this.label34.Size = new System.Drawing.Size(11, 12);
  384. this.label34.TabIndex = 150;
  385. this.label34.Text = "~";
  386. //
  387. // label4
  388. //
  389. this.label4.AutoSize = true;
  390. this.label4.Location = new System.Drawing.Point(3, 67);
  391. this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  392. this.label4.Name = "label4";
  393. this.label4.Size = new System.Drawing.Size(65, 12);
  394. this.label4.TabIndex = 130;
  395. this.label4.Text = "x轴行程/mm";
  396. //
  397. // label3
  398. //
  399. this.label3.AutoSize = true;
  400. this.label3.Location = new System.Drawing.Point(4, 46);
  401. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  402. this.label3.Name = "label3";
  403. this.label3.Size = new System.Drawing.Size(47, 12);
  404. this.label3.TabIndex = 70;
  405. this.label3.Text = "x轴方向";
  406. //
  407. // label2
  408. //
  409. this.label2.AutoSize = true;
  410. this.label2.Location = new System.Drawing.Point(3, 22);
  411. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  412. this.label2.Name = "label2";
  413. this.label2.Size = new System.Drawing.Size(113, 12);
  414. this.label2.TabIndex = 50;
  415. this.label2.Text = "100倍时屏幕尺寸/µm";
  416. //
  417. // groupBox3
  418. //
  419. this.groupBox3.Controls.Add(this.tB_StopMode);
  420. this.groupBox3.Controls.Add(this.btn_StopMode);
  421. this.groupBox3.Controls.Add(this.label13);
  422. this.groupBox3.Controls.Add(this.IDC_COMBO_IMGSIZE);
  423. this.groupBox3.Controls.Add(this.IDC_COMBO_IMGSCANSPEED);
  424. this.groupBox3.Controls.Add(this.IDC_COMBO_FETCHIMGMODE);
  425. this.groupBox3.Controls.Add(this.label12);
  426. this.groupBox3.Controls.Add(this.label11);
  427. this.groupBox3.Controls.Add(this.label7);
  428. this.groupBox3.Location = new System.Drawing.Point(334, 193);
  429. this.groupBox3.Margin = new System.Windows.Forms.Padding(2);
  430. this.groupBox3.Name = "groupBox3";
  431. this.groupBox3.Padding = new System.Windows.Forms.Padding(2);
  432. this.groupBox3.Size = new System.Drawing.Size(306, 158);
  433. this.groupBox3.TabIndex = 230;
  434. this.groupBox3.TabStop = false;
  435. this.groupBox3.Text = "图像扫描参数";
  436. //
  437. // tB_StopMode
  438. //
  439. this.tB_StopMode.Location = new System.Drawing.Point(107, 18);
  440. this.tB_StopMode.Margin = new System.Windows.Forms.Padding(2);
  441. this.tB_StopMode.Name = "tB_StopMode";
  442. this.tB_StopMode.ReadOnly = true;
  443. this.tB_StopMode.Size = new System.Drawing.Size(132, 21);
  444. this.tB_StopMode.TabIndex = 372;
  445. //
  446. // btn_StopMode
  447. //
  448. this.btn_StopMode.Location = new System.Drawing.Point(242, 18);
  449. this.btn_StopMode.Margin = new System.Windows.Forms.Padding(2);
  450. this.btn_StopMode.Name = "btn_StopMode";
  451. this.btn_StopMode.Size = new System.Drawing.Size(45, 23);
  452. this.btn_StopMode.TabIndex = 371;
  453. this.btn_StopMode.Text = "选择";
  454. this.btn_StopMode.UseVisualStyleBackColor = true;
  455. this.btn_StopMode.Click += new System.EventHandler(this.btn_StopMode_Click);
  456. //
  457. // label13
  458. //
  459. this.label13.AutoSize = true;
  460. this.label13.Location = new System.Drawing.Point(6, 123);
  461. this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  462. this.label13.Name = "label13";
  463. this.label13.Size = new System.Drawing.Size(65, 12);
  464. this.label13.TabIndex = 360;
  465. this.label13.Text = "扫描图尺寸";
  466. //
  467. // IDC_COMBO_IMGSIZE
  468. //
  469. this.IDC_COMBO_IMGSIZE.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  470. this.IDC_COMBO_IMGSIZE.FormattingEnabled = true;
  471. this.IDC_COMBO_IMGSIZE.Location = new System.Drawing.Point(108, 122);
  472. this.IDC_COMBO_IMGSIZE.Margin = new System.Windows.Forms.Padding(2);
  473. this.IDC_COMBO_IMGSIZE.Name = "IDC_COMBO_IMGSIZE";
  474. this.IDC_COMBO_IMGSIZE.Size = new System.Drawing.Size(181, 20);
  475. this.IDC_COMBO_IMGSIZE.TabIndex = 370;
  476. this.IDC_COMBO_IMGSIZE.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_IMGSIZE_SelectedIndexChanged);
  477. //
  478. // IDC_COMBO_IMGSCANSPEED
  479. //
  480. this.IDC_COMBO_IMGSCANSPEED.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  481. this.IDC_COMBO_IMGSCANSPEED.FormattingEnabled = true;
  482. this.IDC_COMBO_IMGSCANSPEED.Location = new System.Drawing.Point(108, 86);
  483. this.IDC_COMBO_IMGSCANSPEED.Margin = new System.Windows.Forms.Padding(2);
  484. this.IDC_COMBO_IMGSCANSPEED.Name = "IDC_COMBO_IMGSCANSPEED";
  485. this.IDC_COMBO_IMGSCANSPEED.Size = new System.Drawing.Size(181, 20);
  486. this.IDC_COMBO_IMGSCANSPEED.TabIndex = 350;
  487. this.IDC_COMBO_IMGSCANSPEED.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_IMGSCANSPEED_SelectedIndexChanged);
  488. //
  489. // IDC_COMBO_FETCHIMGMODE
  490. //
  491. this.IDC_COMBO_FETCHIMGMODE.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  492. this.IDC_COMBO_FETCHIMGMODE.FormattingEnabled = true;
  493. this.IDC_COMBO_FETCHIMGMODE.Location = new System.Drawing.Point(108, 53);
  494. this.IDC_COMBO_FETCHIMGMODE.Margin = new System.Windows.Forms.Padding(2);
  495. this.IDC_COMBO_FETCHIMGMODE.Name = "IDC_COMBO_FETCHIMGMODE";
  496. this.IDC_COMBO_FETCHIMGMODE.Size = new System.Drawing.Size(181, 20);
  497. this.IDC_COMBO_FETCHIMGMODE.TabIndex = 330;
  498. this.IDC_COMBO_FETCHIMGMODE.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_FETCHIMGMODE_SelectedIndexChanged);
  499. //
  500. // label12
  501. //
  502. this.label12.AutoSize = true;
  503. this.label12.Location = new System.Drawing.Point(5, 89);
  504. this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  505. this.label12.Name = "label12";
  506. this.label12.Size = new System.Drawing.Size(65, 12);
  507. this.label12.TabIndex = 340;
  508. this.label12.Text = "扫描图精度";
  509. //
  510. // label11
  511. //
  512. this.label11.AutoSize = true;
  513. this.label11.Location = new System.Drawing.Point(6, 55);
  514. this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  515. this.label11.Name = "label11";
  516. this.label11.Size = new System.Drawing.Size(53, 12);
  517. this.label11.TabIndex = 320;
  518. this.label11.Text = "取图方式";
  519. //
  520. // label7
  521. //
  522. this.label7.AutoSize = true;
  523. this.label7.Location = new System.Drawing.Point(5, 21);
  524. this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  525. this.label7.Name = "label7";
  526. this.label7.Size = new System.Drawing.Size(77, 12);
  527. this.label7.TabIndex = 240;
  528. this.label7.Text = "测量终止方式";
  529. //
  530. // IDC_EDIT_STOP_INCA_NUM
  531. //
  532. this.IDC_EDIT_STOP_INCA_NUM.Location = new System.Drawing.Point(760, 514);
  533. this.IDC_EDIT_STOP_INCA_NUM.Margin = new System.Windows.Forms.Padding(2);
  534. this.IDC_EDIT_STOP_INCA_NUM.MaxLength = 10;
  535. this.IDC_EDIT_STOP_INCA_NUM.Name = "IDC_EDIT_STOP_INCA_NUM";
  536. this.IDC_EDIT_STOP_INCA_NUM.Size = new System.Drawing.Size(117, 21);
  537. this.IDC_EDIT_STOP_INCA_NUM.TabIndex = 310;
  538. this.IDC_EDIT_STOP_INCA_NUM.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  539. this.IDC_EDIT_STOP_INCA_NUM.Visible = false;
  540. this.IDC_EDIT_STOP_INCA_NUM.TextChanged += new System.EventHandler(this.IDC_EDIT_STOP_INCA_NUM_TextChanged);
  541. //
  542. // IDC_EDIT_STOP_FIELD_NUM
  543. //
  544. this.IDC_EDIT_STOP_FIELD_NUM.Location = new System.Drawing.Point(760, 490);
  545. this.IDC_EDIT_STOP_FIELD_NUM.Margin = new System.Windows.Forms.Padding(2);
  546. this.IDC_EDIT_STOP_FIELD_NUM.MaxLength = 10;
  547. this.IDC_EDIT_STOP_FIELD_NUM.Name = "IDC_EDIT_STOP_FIELD_NUM";
  548. this.IDC_EDIT_STOP_FIELD_NUM.Size = new System.Drawing.Size(117, 21);
  549. this.IDC_EDIT_STOP_FIELD_NUM.TabIndex = 290;
  550. this.IDC_EDIT_STOP_FIELD_NUM.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  551. this.IDC_EDIT_STOP_FIELD_NUM.Visible = false;
  552. this.IDC_EDIT_STOP_FIELD_NUM.TextChanged += new System.EventHandler(this.IDC_EDIT_STOP_FIELD_NUM_TextChanged);
  553. //
  554. // IDC_EDIT_STOP_TIME
  555. //
  556. this.IDC_EDIT_STOP_TIME.Location = new System.Drawing.Point(760, 467);
  557. this.IDC_EDIT_STOP_TIME.Margin = new System.Windows.Forms.Padding(2);
  558. this.IDC_EDIT_STOP_TIME.MaxLength = 10;
  559. this.IDC_EDIT_STOP_TIME.Name = "IDC_EDIT_STOP_TIME";
  560. this.IDC_EDIT_STOP_TIME.Size = new System.Drawing.Size(117, 21);
  561. this.IDC_EDIT_STOP_TIME.TabIndex = 270;
  562. this.IDC_EDIT_STOP_TIME.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  563. this.IDC_EDIT_STOP_TIME.Visible = false;
  564. this.IDC_EDIT_STOP_TIME.TextChanged += new System.EventHandler(this.IDC_EDIT_STOP_TIME_TextChanged);
  565. //
  566. // label10
  567. //
  568. this.label10.AutoSize = true;
  569. this.label10.Location = new System.Drawing.Point(674, 518);
  570. this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  571. this.label10.Name = "label10";
  572. this.label10.Size = new System.Drawing.Size(77, 12);
  573. this.label10.TabIndex = 300;
  574. this.label10.Text = "终止夹杂物数";
  575. this.label10.Visible = false;
  576. //
  577. // label9
  578. //
  579. this.label9.AutoSize = true;
  580. this.label9.Location = new System.Drawing.Point(674, 494);
  581. this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  582. this.label9.Name = "label9";
  583. this.label9.Size = new System.Drawing.Size(65, 12);
  584. this.label9.TabIndex = 280;
  585. this.label9.Text = "终止帧图数";
  586. this.label9.Visible = false;
  587. //
  588. // label8
  589. //
  590. this.label8.AutoSize = true;
  591. this.label8.Location = new System.Drawing.Point(674, 471);
  592. this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  593. this.label8.Name = "label8";
  594. this.label8.Size = new System.Drawing.Size(77, 12);
  595. this.label8.TabIndex = 260;
  596. this.label8.Text = "终止时间(秒)";
  597. this.label8.Visible = false;
  598. //
  599. // IDC_IMAGE_SIZE_SWITCH
  600. //
  601. this.IDC_IMAGE_SIZE_SWITCH.AutoSize = true;
  602. this.IDC_IMAGE_SIZE_SWITCH.Location = new System.Drawing.Point(700, 161);
  603. this.IDC_IMAGE_SIZE_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  604. this.IDC_IMAGE_SIZE_SWITCH.Name = "IDC_IMAGE_SIZE_SWITCH";
  605. this.IDC_IMAGE_SIZE_SWITCH.Size = new System.Drawing.Size(15, 14);
  606. this.IDC_IMAGE_SIZE_SWITCH.TabIndex = 539;
  607. this.IDC_IMAGE_SIZE_SWITCH.UseVisualStyleBackColor = true;
  608. this.IDC_IMAGE_SIZE_SWITCH.Visible = false;
  609. this.IDC_IMAGE_SIZE_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_IMAGE_SIZE_SWITCH_CheckedChanged);
  610. //
  611. // IDC_SCAN_SPEED_SWITCH
  612. //
  613. this.IDC_SCAN_SPEED_SWITCH.AutoSize = true;
  614. this.IDC_SCAN_SPEED_SWITCH.Location = new System.Drawing.Point(700, 139);
  615. this.IDC_SCAN_SPEED_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  616. this.IDC_SCAN_SPEED_SWITCH.Name = "IDC_SCAN_SPEED_SWITCH";
  617. this.IDC_SCAN_SPEED_SWITCH.Size = new System.Drawing.Size(15, 14);
  618. this.IDC_SCAN_SPEED_SWITCH.TabIndex = 538;
  619. this.IDC_SCAN_SPEED_SWITCH.UseVisualStyleBackColor = true;
  620. this.IDC_SCAN_SPEED_SWITCH.Visible = false;
  621. this.IDC_SCAN_SPEED_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_SCAN_SPEED_SWITCH_CheckedChanged);
  622. //
  623. // IDC_FETCH_IMAGE_SWITCH
  624. //
  625. this.IDC_FETCH_IMAGE_SWITCH.AutoSize = true;
  626. this.IDC_FETCH_IMAGE_SWITCH.Location = new System.Drawing.Point(700, 117);
  627. this.IDC_FETCH_IMAGE_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  628. this.IDC_FETCH_IMAGE_SWITCH.Name = "IDC_FETCH_IMAGE_SWITCH";
  629. this.IDC_FETCH_IMAGE_SWITCH.Size = new System.Drawing.Size(15, 14);
  630. this.IDC_FETCH_IMAGE_SWITCH.TabIndex = 537;
  631. this.IDC_FETCH_IMAGE_SWITCH.UseVisualStyleBackColor = true;
  632. this.IDC_FETCH_IMAGE_SWITCH.Visible = false;
  633. this.IDC_FETCH_IMAGE_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_FETCH_IMAGE_SWITCH_CheckedChanged);
  634. //
  635. // IDC_STOP_PARTICAL_SWITCH
  636. //
  637. this.IDC_STOP_PARTICAL_SWITCH.AutoSize = true;
  638. this.IDC_STOP_PARTICAL_SWITCH.Location = new System.Drawing.Point(700, 95);
  639. this.IDC_STOP_PARTICAL_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  640. this.IDC_STOP_PARTICAL_SWITCH.Name = "IDC_STOP_PARTICAL_SWITCH";
  641. this.IDC_STOP_PARTICAL_SWITCH.Size = new System.Drawing.Size(15, 14);
  642. this.IDC_STOP_PARTICAL_SWITCH.TabIndex = 536;
  643. this.IDC_STOP_PARTICAL_SWITCH.UseVisualStyleBackColor = true;
  644. this.IDC_STOP_PARTICAL_SWITCH.Visible = false;
  645. this.IDC_STOP_PARTICAL_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_STOP_PARTICAL_SWITCH_CheckedChanged);
  646. //
  647. // IDC_STOP_FIELD_SWITCH
  648. //
  649. this.IDC_STOP_FIELD_SWITCH.AutoSize = true;
  650. this.IDC_STOP_FIELD_SWITCH.Location = new System.Drawing.Point(700, 71);
  651. this.IDC_STOP_FIELD_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  652. this.IDC_STOP_FIELD_SWITCH.Name = "IDC_STOP_FIELD_SWITCH";
  653. this.IDC_STOP_FIELD_SWITCH.Size = new System.Drawing.Size(15, 14);
  654. this.IDC_STOP_FIELD_SWITCH.TabIndex = 535;
  655. this.IDC_STOP_FIELD_SWITCH.UseVisualStyleBackColor = true;
  656. this.IDC_STOP_FIELD_SWITCH.Visible = false;
  657. this.IDC_STOP_FIELD_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_STOP_FIELD_SWITCH_CheckedChanged);
  658. //
  659. // IDC_STOP_TIME_SWITCH
  660. //
  661. this.IDC_STOP_TIME_SWITCH.AutoSize = true;
  662. this.IDC_STOP_TIME_SWITCH.Location = new System.Drawing.Point(700, 48);
  663. this.IDC_STOP_TIME_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  664. this.IDC_STOP_TIME_SWITCH.Name = "IDC_STOP_TIME_SWITCH";
  665. this.IDC_STOP_TIME_SWITCH.Size = new System.Drawing.Size(15, 14);
  666. this.IDC_STOP_TIME_SWITCH.TabIndex = 534;
  667. this.IDC_STOP_TIME_SWITCH.UseVisualStyleBackColor = true;
  668. this.IDC_STOP_TIME_SWITCH.Visible = false;
  669. this.IDC_STOP_TIME_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_STOP_TIME_SWITCH_CheckedChanged);
  670. //
  671. // IDC_STOP_MODE_SWITCH
  672. //
  673. this.IDC_STOP_MODE_SWITCH.AutoSize = true;
  674. this.IDC_STOP_MODE_SWITCH.Location = new System.Drawing.Point(700, 25);
  675. this.IDC_STOP_MODE_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  676. this.IDC_STOP_MODE_SWITCH.Name = "IDC_STOP_MODE_SWITCH";
  677. this.IDC_STOP_MODE_SWITCH.Size = new System.Drawing.Size(15, 14);
  678. this.IDC_STOP_MODE_SWITCH.TabIndex = 533;
  679. this.IDC_STOP_MODE_SWITCH.UseVisualStyleBackColor = true;
  680. this.IDC_STOP_MODE_SWITCH.Visible = false;
  681. this.IDC_STOP_MODE_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_STOP_MODE_SWITCH_CheckedChanged);
  682. //
  683. // groupBox4
  684. //
  685. this.groupBox4.Controls.Add(this.IDC_COMBO_STDSelect);
  686. this.groupBox4.Controls.Add(this.IDC_SYS_LIB);
  687. this.groupBox4.Controls.Add(this.label17);
  688. this.groupBox4.Controls.Add(this.tBMeasArea);
  689. this.groupBox4.Controls.Add(this.cBMeasShape);
  690. this.groupBox4.Controls.Add(this.lbArea);
  691. this.groupBox4.Controls.Add(this.lbShape);
  692. this.groupBox4.Controls.Add(this.IDC_COMBO_TECHNOLOGY);
  693. this.groupBox4.Controls.Add(this.label42);
  694. this.groupBox4.Controls.Add(this.IDC_MEAS_SWITCH);
  695. this.groupBox4.Controls.Add(this.IDC_BUTTON_KLFX);
  696. this.groupBox4.Controls.Add(this.label19);
  697. this.groupBox4.Controls.Add(this.label18);
  698. this.groupBox4.Controls.Add(this.label16);
  699. this.groupBox4.Controls.Add(this.IDC_EDIT_ANALYSESTDLIBPATH);
  700. this.groupBox4.Controls.Add(this.IDC_EDIT_MEASUREPARAMPATH);
  701. this.groupBox4.Controls.Add(this.IDC_EDIT_SAMPLENAME);
  702. this.groupBox4.Controls.Add(this.label15);
  703. this.groupBox4.Controls.Add(this.label14);
  704. this.groupBox4.Controls.Add(this.IDC_BUTTON_MEASPRAMPATHSET);
  705. this.groupBox4.Location = new System.Drawing.Point(6, 346);
  706. this.groupBox4.Margin = new System.Windows.Forms.Padding(2);
  707. this.groupBox4.Name = "groupBox4";
  708. this.groupBox4.Padding = new System.Windows.Forms.Padding(2);
  709. this.groupBox4.Size = new System.Drawing.Size(306, 285);
  710. this.groupBox4.TabIndex = 380;
  711. this.groupBox4.TabStop = false;
  712. this.groupBox4.Text = "常规测量参数";
  713. //
  714. // IDC_COMBO_STDSelect
  715. //
  716. this.IDC_COMBO_STDSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  717. this.IDC_COMBO_STDSelect.FormattingEnabled = true;
  718. this.IDC_COMBO_STDSelect.Location = new System.Drawing.Point(118, 154);
  719. this.IDC_COMBO_STDSelect.Margin = new System.Windows.Forms.Padding(2);
  720. this.IDC_COMBO_STDSelect.Name = "IDC_COMBO_STDSelect";
  721. this.IDC_COMBO_STDSelect.Size = new System.Drawing.Size(137, 20);
  722. this.IDC_COMBO_STDSelect.TabIndex = 821;
  723. this.IDC_COMBO_STDSelect.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_STDSelect_SelectedIndexChanged);
  724. //
  725. // IDC_SYS_LIB
  726. //
  727. this.IDC_SYS_LIB.AutoSize = true;
  728. this.IDC_SYS_LIB.Location = new System.Drawing.Point(119, 93);
  729. this.IDC_SYS_LIB.Margin = new System.Windows.Forms.Padding(2);
  730. this.IDC_SYS_LIB.Name = "IDC_SYS_LIB";
  731. this.IDC_SYS_LIB.Size = new System.Drawing.Size(15, 14);
  732. this.IDC_SYS_LIB.TabIndex = 538;
  733. this.IDC_SYS_LIB.UseVisualStyleBackColor = true;
  734. this.IDC_SYS_LIB.CheckedChanged += new System.EventHandler(this.IDC_SYS_LIB_CheckedChanged);
  735. //
  736. // label17
  737. //
  738. this.label17.AutoSize = true;
  739. this.label17.Location = new System.Drawing.Point(8, 93);
  740. this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  741. this.label17.Name = "label17";
  742. this.label17.Size = new System.Drawing.Size(89, 12);
  743. this.label17.TabIndex = 537;
  744. this.label17.Text = "使用系统库开关";
  745. //
  746. // tBMeasArea
  747. //
  748. this.tBMeasArea.Location = new System.Drawing.Point(147, 218);
  749. this.tBMeasArea.Margin = new System.Windows.Forms.Padding(2);
  750. this.tBMeasArea.Name = "tBMeasArea";
  751. this.tBMeasArea.Size = new System.Drawing.Size(145, 21);
  752. this.tBMeasArea.TabIndex = 536;
  753. this.tBMeasArea.TextChanged += new System.EventHandler(this.tBMeasArea_TextChanged);
  754. //
  755. // cBMeasShape
  756. //
  757. this.cBMeasShape.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  758. this.cBMeasShape.FormattingEnabled = true;
  759. this.cBMeasShape.Location = new System.Drawing.Point(148, 186);
  760. this.cBMeasShape.Margin = new System.Windows.Forms.Padding(2);
  761. this.cBMeasShape.Name = "cBMeasShape";
  762. this.cBMeasShape.Size = new System.Drawing.Size(142, 20);
  763. this.cBMeasShape.TabIndex = 535;
  764. this.cBMeasShape.SelectedIndexChanged += new System.EventHandler(this.cBMeasShape_SelectedIndexChanged);
  765. //
  766. // lbArea
  767. //
  768. this.lbArea.AutoSize = true;
  769. this.lbArea.Location = new System.Drawing.Point(8, 220);
  770. this.lbArea.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  771. this.lbArea.Name = "lbArea";
  772. this.lbArea.Size = new System.Drawing.Size(101, 12);
  773. this.lbArea.TabIndex = 534;
  774. this.lbArea.Text = "测量区域面积/mm2";
  775. //
  776. // lbShape
  777. //
  778. this.lbShape.AutoSize = true;
  779. this.lbShape.Location = new System.Drawing.Point(9, 189);
  780. this.lbShape.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  781. this.lbShape.Name = "lbShape";
  782. this.lbShape.Size = new System.Drawing.Size(77, 12);
  783. this.lbShape.TabIndex = 533;
  784. this.lbShape.Text = "测量区域形状";
  785. //
  786. // IDC_COMBO_TECHNOLOGY
  787. //
  788. this.IDC_COMBO_TECHNOLOGY.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  789. this.IDC_COMBO_TECHNOLOGY.FormattingEnabled = true;
  790. this.IDC_COMBO_TECHNOLOGY.Location = new System.Drawing.Point(118, 250);
  791. this.IDC_COMBO_TECHNOLOGY.Margin = new System.Windows.Forms.Padding(2);
  792. this.IDC_COMBO_TECHNOLOGY.Name = "IDC_COMBO_TECHNOLOGY";
  793. this.IDC_COMBO_TECHNOLOGY.Size = new System.Drawing.Size(171, 20);
  794. this.IDC_COMBO_TECHNOLOGY.TabIndex = 532;
  795. this.IDC_COMBO_TECHNOLOGY.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_TECHNOLOGY_SelectedIndexChanged);
  796. //
  797. // label42
  798. //
  799. this.label42.AutoSize = true;
  800. this.label42.Location = new System.Drawing.Point(9, 252);
  801. this.label42.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  802. this.label42.Name = "label42";
  803. this.label42.Size = new System.Drawing.Size(53, 12);
  804. this.label42.TabIndex = 531;
  805. this.label42.Text = "精炼工艺";
  806. //
  807. // IDC_MEAS_SWITCH
  808. //
  809. this.IDC_MEAS_SWITCH.AutoSize = true;
  810. this.IDC_MEAS_SWITCH.Location = new System.Drawing.Point(119, 43);
  811. this.IDC_MEAS_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  812. this.IDC_MEAS_SWITCH.Name = "IDC_MEAS_SWITCH";
  813. this.IDC_MEAS_SWITCH.Size = new System.Drawing.Size(15, 14);
  814. this.IDC_MEAS_SWITCH.TabIndex = 420;
  815. this.IDC_MEAS_SWITCH.UseVisualStyleBackColor = true;
  816. this.IDC_MEAS_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_MEAS_SWITCH_CheckedChanged);
  817. //
  818. // IDC_BUTTON_KLFX
  819. //
  820. this.IDC_BUTTON_KLFX.Location = new System.Drawing.Point(259, 154);
  821. this.IDC_BUTTON_KLFX.Margin = new System.Windows.Forms.Padding(2);
  822. this.IDC_BUTTON_KLFX.Name = "IDC_BUTTON_KLFX";
  823. this.IDC_BUTTON_KLFX.Size = new System.Drawing.Size(33, 20);
  824. this.IDC_BUTTON_KLFX.TabIndex = 530;
  825. this.IDC_BUTTON_KLFX.Text = "...";
  826. this.IDC_BUTTON_KLFX.UseVisualStyleBackColor = true;
  827. this.IDC_BUTTON_KLFX.Click += new System.EventHandler(this.IDC_BUTTON_KLFX_Click);
  828. //
  829. // label19
  830. //
  831. this.label19.AutoSize = true;
  832. this.label19.Location = new System.Drawing.Point(9, 157);
  833. this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  834. this.label19.Name = "label19";
  835. this.label19.Size = new System.Drawing.Size(89, 12);
  836. this.label19.TabIndex = 510;
  837. this.label19.Text = "用户分析库编辑";
  838. //
  839. // label18
  840. //
  841. this.label18.AutoSize = true;
  842. this.label18.Location = new System.Drawing.Point(8, 122);
  843. this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  844. this.label18.Name = "label18";
  845. this.label18.Size = new System.Drawing.Size(101, 12);
  846. this.label18.TabIndex = 480;
  847. this.label18.Text = "系统分析库文件夹";
  848. //
  849. // label16
  850. //
  851. this.label16.AutoSize = true;
  852. this.label16.Location = new System.Drawing.Point(8, 67);
  853. this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  854. this.label16.Name = "label16";
  855. this.label16.Size = new System.Drawing.Size(89, 12);
  856. this.label16.TabIndex = 430;
  857. this.label16.Text = "测量参数文件夹";
  858. //
  859. // IDC_EDIT_ANALYSESTDLIBPATH
  860. //
  861. this.IDC_EDIT_ANALYSESTDLIBPATH.Location = new System.Drawing.Point(119, 120);
  862. this.IDC_EDIT_ANALYSESTDLIBPATH.Margin = new System.Windows.Forms.Padding(2);
  863. this.IDC_EDIT_ANALYSESTDLIBPATH.Name = "IDC_EDIT_ANALYSESTDLIBPATH";
  864. this.IDC_EDIT_ANALYSESTDLIBPATH.ReadOnly = true;
  865. this.IDC_EDIT_ANALYSESTDLIBPATH.Size = new System.Drawing.Size(171, 21);
  866. this.IDC_EDIT_ANALYSESTDLIBPATH.TabIndex = 490;
  867. this.IDC_EDIT_ANALYSESTDLIBPATH.TextChanged += new System.EventHandler(this.IDC_EDIT_ANALYSESTDLIBPATH_TextChanged);
  868. //
  869. // IDC_EDIT_MEASUREPARAMPATH
  870. //
  871. this.IDC_EDIT_MEASUREPARAMPATH.Location = new System.Drawing.Point(118, 65);
  872. this.IDC_EDIT_MEASUREPARAMPATH.Margin = new System.Windows.Forms.Padding(2);
  873. this.IDC_EDIT_MEASUREPARAMPATH.Name = "IDC_EDIT_MEASUREPARAMPATH";
  874. this.IDC_EDIT_MEASUREPARAMPATH.ReadOnly = true;
  875. this.IDC_EDIT_MEASUREPARAMPATH.Size = new System.Drawing.Size(173, 21);
  876. this.IDC_EDIT_MEASUREPARAMPATH.TabIndex = 440;
  877. this.IDC_EDIT_MEASUREPARAMPATH.TextChanged += new System.EventHandler(this.IDC_EDIT_MEASUREPARAMPATH_TextChanged);
  878. //
  879. // IDC_EDIT_SAMPLENAME
  880. //
  881. this.IDC_EDIT_SAMPLENAME.Location = new System.Drawing.Point(119, 15);
  882. this.IDC_EDIT_SAMPLENAME.Margin = new System.Windows.Forms.Padding(2);
  883. this.IDC_EDIT_SAMPLENAME.MaxLength = 18;
  884. this.IDC_EDIT_SAMPLENAME.Name = "IDC_EDIT_SAMPLENAME";
  885. this.IDC_EDIT_SAMPLENAME.Size = new System.Drawing.Size(173, 21);
  886. this.IDC_EDIT_SAMPLENAME.TabIndex = 400;
  887. this.IDC_EDIT_SAMPLENAME.TextChanged += new System.EventHandler(this.IDC_EDIT_SAMPLENAME_TextChanged);
  888. //
  889. // label15
  890. //
  891. this.label15.AutoSize = true;
  892. this.label15.Location = new System.Drawing.Point(8, 43);
  893. this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  894. this.label15.Name = "label15";
  895. this.label15.Size = new System.Drawing.Size(53, 12);
  896. this.label15.TabIndex = 410;
  897. this.label15.Text = "执行开关";
  898. //
  899. // label14
  900. //
  901. this.label14.AutoSize = true;
  902. this.label14.Location = new System.Drawing.Point(6, 17);
  903. this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  904. this.label14.Name = "label14";
  905. this.label14.Size = new System.Drawing.Size(41, 12);
  906. this.label14.TabIndex = 390;
  907. this.label14.Text = "样品名";
  908. //
  909. // IDC_BUTTON_MEASPRAMPATHSET
  910. //
  911. this.IDC_BUTTON_MEASPRAMPATHSET.Location = new System.Drawing.Point(263, 69);
  912. this.IDC_BUTTON_MEASPRAMPATHSET.Margin = new System.Windows.Forms.Padding(2);
  913. this.IDC_BUTTON_MEASPRAMPATHSET.Name = "IDC_BUTTON_MEASPRAMPATHSET";
  914. this.IDC_BUTTON_MEASPRAMPATHSET.Size = new System.Drawing.Size(17, 13);
  915. this.IDC_BUTTON_MEASPRAMPATHSET.TabIndex = 450;
  916. this.IDC_BUTTON_MEASPRAMPATHSET.Text = "...";
  917. this.IDC_BUTTON_MEASPRAMPATHSET.UseVisualStyleBackColor = true;
  918. this.IDC_BUTTON_MEASPRAMPATHSET.Click += new System.EventHandler(this.IDC_BUTTON_MEASPRAMPATHSET_Click);
  919. //
  920. // groupBox5
  921. //
  922. this.groupBox5.Controls.Add(this.IDC_COMBO_CorrosionExpansionCoefficient);
  923. this.groupBox5.Controls.Add(this.label50);
  924. this.groupBox5.Controls.Add(this.IDC_EDIT_Overlap);
  925. this.groupBox5.Controls.Add(this.label49);
  926. this.groupBox5.Controls.Add(this.IDC_COMBO_AUTOBGREMOVETYP);
  927. this.groupBox5.Controls.Add(this.label_Auto);
  928. this.groupBox5.Controls.Add(this.IDC_COMBO_BGREMOVETYPE);
  929. this.groupBox5.Controls.Add(this.label43);
  930. this.groupBox5.Controls.Add(this.label22);
  931. this.groupBox5.Controls.Add(this.label21);
  932. this.groupBox5.Controls.Add(this.label25);
  933. this.groupBox5.Controls.Add(this.IDC_EDIT_PARTMAX);
  934. this.groupBox5.Controls.Add(this.IDC_EDIT_PARTMIN);
  935. this.groupBox5.Controls.Add(this.IDC_EDIT_BACKMAX);
  936. this.groupBox5.Controls.Add(this.IDC_EDIT_BACKMIN);
  937. this.groupBox5.Controls.Add(this.IDC_EDIT_PARTAREAMAX);
  938. this.groupBox5.Controls.Add(this.IDC_EDIT_PARTAREAMIN);
  939. this.groupBox5.Controls.Add(this.label24);
  940. this.groupBox5.Controls.Add(this.label28);
  941. this.groupBox5.Controls.Add(this.label51);
  942. this.groupBox5.Controls.Add(this.label27);
  943. this.groupBox5.Controls.Add(this.label26);
  944. this.groupBox5.Controls.Add(this.label23);
  945. this.groupBox5.Controls.Add(this.label20);
  946. this.groupBox5.Location = new System.Drawing.Point(334, 365);
  947. this.groupBox5.Margin = new System.Windows.Forms.Padding(2);
  948. this.groupBox5.Name = "groupBox5";
  949. this.groupBox5.Padding = new System.Windows.Forms.Padding(2);
  950. this.groupBox5.Size = new System.Drawing.Size(306, 226);
  951. this.groupBox5.TabIndex = 540;
  952. this.groupBox5.TabStop = false;
  953. this.groupBox5.Text = "图像处理参数";
  954. //
  955. // IDC_COMBO_CorrosionExpansionCoefficient
  956. //
  957. this.IDC_COMBO_CorrosionExpansionCoefficient.FormattingEnabled = true;
  958. this.IDC_COMBO_CorrosionExpansionCoefficient.Location = new System.Drawing.Point(125, 153);
  959. this.IDC_COMBO_CorrosionExpansionCoefficient.Margin = new System.Windows.Forms.Padding(2);
  960. this.IDC_COMBO_CorrosionExpansionCoefficient.Name = "IDC_COMBO_CorrosionExpansionCoefficient";
  961. this.IDC_COMBO_CorrosionExpansionCoefficient.Size = new System.Drawing.Size(92, 20);
  962. this.IDC_COMBO_CorrosionExpansionCoefficient.TabIndex = 825;
  963. this.IDC_COMBO_CorrosionExpansionCoefficient.TextChanged += new System.EventHandler(this.IDC_COMBO_CorrosionExpansionCoefficient_TextChanged);
  964. //
  965. // label49
  966. //
  967. this.label49.AutoSize = true;
  968. this.label49.Location = new System.Drawing.Point(6, 156);
  969. this.label49.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  970. this.label49.Name = "label49";
  971. this.label49.Size = new System.Drawing.Size(77, 12);
  972. this.label49.TabIndex = 824;
  973. this.label49.Text = "腐蚀膨胀系数";
  974. //
  975. // IDC_COMBO_AUTOBGREMOVETYP
  976. //
  977. this.IDC_COMBO_AUTOBGREMOVETYP.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  978. this.IDC_COMBO_AUTOBGREMOVETYP.FormattingEnabled = true;
  979. this.IDC_COMBO_AUTOBGREMOVETYP.Location = new System.Drawing.Point(191, 44);
  980. this.IDC_COMBO_AUTOBGREMOVETYP.Margin = new System.Windows.Forms.Padding(2);
  981. this.IDC_COMBO_AUTOBGREMOVETYP.Name = "IDC_COMBO_AUTOBGREMOVETYP";
  982. this.IDC_COMBO_AUTOBGREMOVETYP.Size = new System.Drawing.Size(97, 20);
  983. this.IDC_COMBO_AUTOBGREMOVETYP.TabIndex = 816;
  984. //
  985. // label_Auto
  986. //
  987. this.label_Auto.AutoSize = true;
  988. this.label_Auto.Location = new System.Drawing.Point(5, 46);
  989. this.label_Auto.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  990. this.label_Auto.Name = "label_Auto";
  991. this.label_Auto.Size = new System.Drawing.Size(29, 12);
  992. this.label_Auto.TabIndex = 815;
  993. this.label_Auto.Text = "自动";
  994. //
  995. // IDC_COMBO_BGREMOVETYPE
  996. //
  997. this.IDC_COMBO_BGREMOVETYPE.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  998. this.IDC_COMBO_BGREMOVETYPE.FormattingEnabled = true;
  999. this.IDC_COMBO_BGREMOVETYPE.Location = new System.Drawing.Point(191, 18);
  1000. this.IDC_COMBO_BGREMOVETYPE.Margin = new System.Windows.Forms.Padding(2);
  1001. this.IDC_COMBO_BGREMOVETYPE.Name = "IDC_COMBO_BGREMOVETYPE";
  1002. this.IDC_COMBO_BGREMOVETYPE.Size = new System.Drawing.Size(97, 20);
  1003. this.IDC_COMBO_BGREMOVETYPE.TabIndex = 814;
  1004. //
  1005. // label43
  1006. //
  1007. this.label43.AutoSize = true;
  1008. this.label43.Location = new System.Drawing.Point(4, 20);
  1009. this.label43.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1010. this.label43.Name = "label43";
  1011. this.label43.Size = new System.Drawing.Size(77, 12);
  1012. this.label43.TabIndex = 813;
  1013. this.label43.Text = "背景处理方式";
  1014. //
  1015. // label22
  1016. //
  1017. this.label22.AutoSize = true;
  1018. this.label22.Location = new System.Drawing.Point(6, 126);
  1019. this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1020. this.label22.Name = "label22";
  1021. this.label22.Size = new System.Drawing.Size(77, 12);
  1022. this.label22.TabIndex = 650;
  1023. this.label22.Text = "颗粒灰度范围";
  1024. //
  1025. // label21
  1026. //
  1027. this.label21.AutoSize = true;
  1028. this.label21.Location = new System.Drawing.Point(6, 100);
  1029. this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1030. this.label21.Name = "label21";
  1031. this.label21.Size = new System.Drawing.Size(77, 12);
  1032. this.label21.TabIndex = 600;
  1033. this.label21.Text = "背景灰度范围";
  1034. //
  1035. // label25
  1036. //
  1037. this.label25.AutoSize = true;
  1038. this.label25.Location = new System.Drawing.Point(92, 126);
  1039. this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1040. this.label25.Name = "label25";
  1041. this.label25.Size = new System.Drawing.Size(29, 12);
  1042. this.label25.TabIndex = 660;
  1043. this.label25.Text = "最小";
  1044. //
  1045. // IDC_EDIT_PARTMAX
  1046. //
  1047. this.IDC_EDIT_PARTMAX.Location = new System.Drawing.Point(227, 122);
  1048. this.IDC_EDIT_PARTMAX.Margin = new System.Windows.Forms.Padding(2);
  1049. this.IDC_EDIT_PARTMAX.MaxLength = 10;
  1050. this.IDC_EDIT_PARTMAX.Name = "IDC_EDIT_PARTMAX";
  1051. this.IDC_EDIT_PARTMAX.Size = new System.Drawing.Size(61, 21);
  1052. this.IDC_EDIT_PARTMAX.TabIndex = 690;
  1053. this.IDC_EDIT_PARTMAX.TextChanged += new System.EventHandler(this.IDC_EDIT_PARTMAX_TextChanged);
  1054. //
  1055. // IDC_EDIT_PARTMIN
  1056. //
  1057. this.IDC_EDIT_PARTMIN.Location = new System.Drawing.Point(125, 122);
  1058. this.IDC_EDIT_PARTMIN.Margin = new System.Windows.Forms.Padding(2);
  1059. this.IDC_EDIT_PARTMIN.MaxLength = 10;
  1060. this.IDC_EDIT_PARTMIN.Name = "IDC_EDIT_PARTMIN";
  1061. this.IDC_EDIT_PARTMIN.Size = new System.Drawing.Size(61, 21);
  1062. this.IDC_EDIT_PARTMIN.TabIndex = 670;
  1063. this.IDC_EDIT_PARTMIN.TextChanged += new System.EventHandler(this.IDC_EDIT_PARTMIN_TextChanged);
  1064. //
  1065. // IDC_EDIT_BACKMAX
  1066. //
  1067. this.IDC_EDIT_BACKMAX.Location = new System.Drawing.Point(227, 96);
  1068. this.IDC_EDIT_BACKMAX.Margin = new System.Windows.Forms.Padding(2);
  1069. this.IDC_EDIT_BACKMAX.MaxLength = 10;
  1070. this.IDC_EDIT_BACKMAX.Name = "IDC_EDIT_BACKMAX";
  1071. this.IDC_EDIT_BACKMAX.Size = new System.Drawing.Size(61, 21);
  1072. this.IDC_EDIT_BACKMAX.TabIndex = 640;
  1073. this.IDC_EDIT_BACKMAX.TextChanged += new System.EventHandler(this.IDC_EDIT_BACKMAX_TextChanged);
  1074. //
  1075. // IDC_EDIT_BACKMIN
  1076. //
  1077. this.IDC_EDIT_BACKMIN.Location = new System.Drawing.Point(125, 96);
  1078. this.IDC_EDIT_BACKMIN.Margin = new System.Windows.Forms.Padding(2);
  1079. this.IDC_EDIT_BACKMIN.MaxLength = 10;
  1080. this.IDC_EDIT_BACKMIN.Name = "IDC_EDIT_BACKMIN";
  1081. this.IDC_EDIT_BACKMIN.Size = new System.Drawing.Size(61, 21);
  1082. this.IDC_EDIT_BACKMIN.TabIndex = 620;
  1083. this.IDC_EDIT_BACKMIN.TextChanged += new System.EventHandler(this.IDC_EDIT_BACKMIN_TextChanged);
  1084. //
  1085. // IDC_EDIT_PARTAREAMAX
  1086. //
  1087. this.IDC_EDIT_PARTAREAMAX.Location = new System.Drawing.Point(227, 70);
  1088. this.IDC_EDIT_PARTAREAMAX.Margin = new System.Windows.Forms.Padding(2);
  1089. this.IDC_EDIT_PARTAREAMAX.MaxLength = 10;
  1090. this.IDC_EDIT_PARTAREAMAX.Name = "IDC_EDIT_PARTAREAMAX";
  1091. this.IDC_EDIT_PARTAREAMAX.Size = new System.Drawing.Size(61, 21);
  1092. this.IDC_EDIT_PARTAREAMAX.TabIndex = 590;
  1093. this.IDC_EDIT_PARTAREAMAX.TextChanged += new System.EventHandler(this.IDC_EDIT_PARTAREAMAX_TextChanged);
  1094. //
  1095. // IDC_EDIT_PARTAREAMIN
  1096. //
  1097. this.IDC_EDIT_PARTAREAMIN.Location = new System.Drawing.Point(125, 70);
  1098. this.IDC_EDIT_PARTAREAMIN.Margin = new System.Windows.Forms.Padding(2);
  1099. this.IDC_EDIT_PARTAREAMIN.MaxLength = 10;
  1100. this.IDC_EDIT_PARTAREAMIN.Name = "IDC_EDIT_PARTAREAMIN";
  1101. this.IDC_EDIT_PARTAREAMIN.Size = new System.Drawing.Size(61, 21);
  1102. this.IDC_EDIT_PARTAREAMIN.TabIndex = 570;
  1103. this.IDC_EDIT_PARTAREAMIN.TextChanged += new System.EventHandler(this.IDC_EDIT_PARTAREAMIN_TextChanged);
  1104. //
  1105. // label24
  1106. //
  1107. this.label24.AutoSize = true;
  1108. this.label24.Location = new System.Drawing.Point(92, 100);
  1109. this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1110. this.label24.Name = "label24";
  1111. this.label24.Size = new System.Drawing.Size(29, 12);
  1112. this.label24.TabIndex = 610;
  1113. this.label24.Text = "最小";
  1114. //
  1115. // label28
  1116. //
  1117. this.label28.AutoSize = true;
  1118. this.label28.Location = new System.Drawing.Point(197, 126);
  1119. this.label28.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1120. this.label28.Name = "label28";
  1121. this.label28.Size = new System.Drawing.Size(29, 12);
  1122. this.label28.TabIndex = 680;
  1123. this.label28.Text = "最大";
  1124. //
  1125. // label27
  1126. //
  1127. this.label27.AutoSize = true;
  1128. this.label27.Location = new System.Drawing.Point(197, 100);
  1129. this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1130. this.label27.Name = "label27";
  1131. this.label27.Size = new System.Drawing.Size(29, 12);
  1132. this.label27.TabIndex = 630;
  1133. this.label27.Text = "最大";
  1134. //
  1135. // label26
  1136. //
  1137. this.label26.AutoSize = true;
  1138. this.label26.Location = new System.Drawing.Point(197, 74);
  1139. this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1140. this.label26.Name = "label26";
  1141. this.label26.Size = new System.Drawing.Size(29, 12);
  1142. this.label26.TabIndex = 580;
  1143. this.label26.Text = "最大";
  1144. //
  1145. // label23
  1146. //
  1147. this.label23.AutoSize = true;
  1148. this.label23.Location = new System.Drawing.Point(92, 74);
  1149. this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1150. this.label23.Name = "label23";
  1151. this.label23.Size = new System.Drawing.Size(29, 12);
  1152. this.label23.TabIndex = 560;
  1153. this.label23.Text = "最小";
  1154. //
  1155. // label20
  1156. //
  1157. this.label20.AutoSize = true;
  1158. this.label20.Location = new System.Drawing.Point(6, 74);
  1159. this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1160. this.label20.Name = "label20";
  1161. this.label20.Size = new System.Drawing.Size(77, 12);
  1162. this.label20.TabIndex = 550;
  1163. this.label20.Text = "颗粒尺寸范围";
  1164. //
  1165. // IDC_PART_GRAY_MIN_SWITCH
  1166. //
  1167. this.IDC_PART_GRAY_MIN_SWITCH.AutoSize = true;
  1168. this.IDC_PART_GRAY_MIN_SWITCH.Location = new System.Drawing.Point(700, 314);
  1169. this.IDC_PART_GRAY_MIN_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  1170. this.IDC_PART_GRAY_MIN_SWITCH.Name = "IDC_PART_GRAY_MIN_SWITCH";
  1171. this.IDC_PART_GRAY_MIN_SWITCH.Size = new System.Drawing.Size(15, 14);
  1172. this.IDC_PART_GRAY_MIN_SWITCH.TabIndex = 812;
  1173. this.IDC_PART_GRAY_MIN_SWITCH.UseVisualStyleBackColor = true;
  1174. this.IDC_PART_GRAY_MIN_SWITCH.Visible = false;
  1175. this.IDC_PART_GRAY_MIN_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_PART_GRAY_SWITCH_CheckedChanged);
  1176. //
  1177. // IDC_BACK_MIN_SWITCH
  1178. //
  1179. this.IDC_BACK_MIN_SWITCH.AutoSize = true;
  1180. this.IDC_BACK_MIN_SWITCH.Location = new System.Drawing.Point(700, 287);
  1181. this.IDC_BACK_MIN_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  1182. this.IDC_BACK_MIN_SWITCH.Name = "IDC_BACK_MIN_SWITCH";
  1183. this.IDC_BACK_MIN_SWITCH.Size = new System.Drawing.Size(15, 14);
  1184. this.IDC_BACK_MIN_SWITCH.TabIndex = 811;
  1185. this.IDC_BACK_MIN_SWITCH.UseVisualStyleBackColor = true;
  1186. this.IDC_BACK_MIN_SWITCH.Visible = false;
  1187. this.IDC_BACK_MIN_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_BACK_MIN_SWITCH_CheckedChanged);
  1188. //
  1189. // IDC_PART_MIN_SWITCH
  1190. //
  1191. this.IDC_PART_MIN_SWITCH.AutoSize = true;
  1192. this.IDC_PART_MIN_SWITCH.Location = new System.Drawing.Point(700, 262);
  1193. this.IDC_PART_MIN_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  1194. this.IDC_PART_MIN_SWITCH.Name = "IDC_PART_MIN_SWITCH";
  1195. this.IDC_PART_MIN_SWITCH.Size = new System.Drawing.Size(15, 14);
  1196. this.IDC_PART_MIN_SWITCH.TabIndex = 810;
  1197. this.IDC_PART_MIN_SWITCH.UseVisualStyleBackColor = true;
  1198. this.IDC_PART_MIN_SWITCH.Visible = false;
  1199. this.IDC_PART_MIN_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_PART_MIN_SWITCH_CheckedChanged);
  1200. //
  1201. // IDC_PART_GRAY_MAX_SWITCH
  1202. //
  1203. this.IDC_PART_GRAY_MAX_SWITCH.AutoSize = true;
  1204. this.IDC_PART_GRAY_MAX_SWITCH.Location = new System.Drawing.Point(745, 312);
  1205. this.IDC_PART_GRAY_MAX_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  1206. this.IDC_PART_GRAY_MAX_SWITCH.Name = "IDC_PART_GRAY_MAX_SWITCH";
  1207. this.IDC_PART_GRAY_MAX_SWITCH.Size = new System.Drawing.Size(15, 14);
  1208. this.IDC_PART_GRAY_MAX_SWITCH.TabIndex = 692;
  1209. this.IDC_PART_GRAY_MAX_SWITCH.UseVisualStyleBackColor = true;
  1210. this.IDC_PART_GRAY_MAX_SWITCH.Visible = false;
  1211. this.IDC_PART_GRAY_MAX_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_PART_GRAY_MAX_CheckedChanged);
  1212. //
  1213. // IDC_BACK_MAX_SWITCH
  1214. //
  1215. this.IDC_BACK_MAX_SWITCH.AutoSize = true;
  1216. this.IDC_BACK_MAX_SWITCH.Location = new System.Drawing.Point(745, 285);
  1217. this.IDC_BACK_MAX_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  1218. this.IDC_BACK_MAX_SWITCH.Name = "IDC_BACK_MAX_SWITCH";
  1219. this.IDC_BACK_MAX_SWITCH.Size = new System.Drawing.Size(15, 14);
  1220. this.IDC_BACK_MAX_SWITCH.TabIndex = 691;
  1221. this.IDC_BACK_MAX_SWITCH.UseVisualStyleBackColor = true;
  1222. this.IDC_BACK_MAX_SWITCH.Visible = false;
  1223. this.IDC_BACK_MAX_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_BACK_MAX_SWITCH_CheckedChanged);
  1224. //
  1225. // IDC_PART_MAX_SWITCH
  1226. //
  1227. this.IDC_PART_MAX_SWITCH.AutoSize = true;
  1228. this.IDC_PART_MAX_SWITCH.Location = new System.Drawing.Point(745, 260);
  1229. this.IDC_PART_MAX_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  1230. this.IDC_PART_MAX_SWITCH.Name = "IDC_PART_MAX_SWITCH";
  1231. this.IDC_PART_MAX_SWITCH.Size = new System.Drawing.Size(15, 14);
  1232. this.IDC_PART_MAX_SWITCH.TabIndex = 540;
  1233. this.IDC_PART_MAX_SWITCH.UseVisualStyleBackColor = true;
  1234. this.IDC_PART_MAX_SWITCH.Visible = false;
  1235. this.IDC_PART_MAX_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_PART_MAX_SWITCH_CheckedChanged);
  1236. //
  1237. // groupBox6
  1238. //
  1239. this.groupBox6.Controls.Add(this.IDC_EDIT_XrayLimit);
  1240. this.groupBox6.Controls.Add(this.label47);
  1241. this.groupBox6.Controls.Add(this.IDC_EDIT_SmallPartAQTime);
  1242. this.groupBox6.Controls.Add(this.label45);
  1243. this.groupBox6.Controls.Add(this.label46);
  1244. this.groupBox6.Controls.Add(this.IDC_EDIT_QuantifyMinSize);
  1245. this.groupBox6.Controls.Add(this.label37);
  1246. this.groupBox6.Controls.Add(this.label40);
  1247. this.groupBox6.Controls.Add(this.IDC_USINGXRAY_LIB);
  1248. this.groupBox6.Controls.Add(this.label44);
  1249. this.groupBox6.Controls.Add(this.IDC_TEXTBOX_SEARCHXRAYSPEED_TIME);
  1250. this.groupBox6.Controls.Add(this.label38);
  1251. this.groupBox6.Controls.Add(this.label30);
  1252. this.groupBox6.Controls.Add(this.label29);
  1253. this.groupBox6.Controls.Add(this.IDC_EDIT_SEARCHXRAYCOUNTLIMIT);
  1254. this.groupBox6.Controls.Add(this.IDC_COMBO_SEARCHXRAYSPEED);
  1255. this.groupBox6.Controls.Add(this.IDC_TEXTBOX_ANALYXRAYSPEED_TIME);
  1256. this.groupBox6.Controls.Add(this.IDC_COMBO_ANALYXRAYSPEED);
  1257. this.groupBox6.Controls.Add(this.label32);
  1258. this.groupBox6.Controls.Add(this.label39);
  1259. this.groupBox6.Controls.Add(this.IDC_COMBO_XRAYSCANMODE);
  1260. this.groupBox6.Controls.Add(this.IDC_EDIT_ANALYXRAYAIMVALUE);
  1261. this.groupBox6.Controls.Add(this.label33);
  1262. this.groupBox6.Controls.Add(this.label31);
  1263. this.groupBox6.Location = new System.Drawing.Point(6, 134);
  1264. this.groupBox6.Margin = new System.Windows.Forms.Padding(2);
  1265. this.groupBox6.Name = "groupBox6";
  1266. this.groupBox6.Size = new System.Drawing.Size(306, 187);
  1267. this.groupBox6.TabIndex = 700;
  1268. this.groupBox6.TabStop = false;
  1269. this.groupBox6.Text = "X-ray参数";
  1270. //
  1271. // IDC_EDIT_XrayLimit
  1272. //
  1273. this.IDC_EDIT_XrayLimit.Location = new System.Drawing.Point(141, 162);
  1274. this.IDC_EDIT_XrayLimit.Margin = new System.Windows.Forms.Padding(2);
  1275. this.IDC_EDIT_XrayLimit.MaxLength = 10;
  1276. this.IDC_EDIT_XrayLimit.Name = "IDC_EDIT_XrayLimit";
  1277. this.IDC_EDIT_XrayLimit.Size = new System.Drawing.Size(150, 21);
  1278. this.IDC_EDIT_XrayLimit.TabIndex = 834;
  1279. //
  1280. // label47
  1281. //
  1282. this.label47.AutoSize = true;
  1283. this.label47.Location = new System.Drawing.Point(9, 165);
  1284. this.label47.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1285. this.label47.Name = "label47";
  1286. this.label47.Size = new System.Drawing.Size(53, 12);
  1287. this.label47.TabIndex = 833;
  1288. this.label47.Text = "数量限值";
  1289. //
  1290. // IDC_EDIT_SmallPartAQTime
  1291. //
  1292. this.IDC_EDIT_SmallPartAQTime.Location = new System.Drawing.Point(142, 113);
  1293. this.IDC_EDIT_SmallPartAQTime.MaxLength = 10;
  1294. this.IDC_EDIT_SmallPartAQTime.Name = "IDC_EDIT_SmallPartAQTime";
  1295. this.IDC_EDIT_SmallPartAQTime.Size = new System.Drawing.Size(117, 21);
  1296. this.IDC_EDIT_SmallPartAQTime.TabIndex = 832;
  1297. //
  1298. // label45
  1299. //
  1300. this.label45.AutoSize = true;
  1301. this.label45.Location = new System.Drawing.Point(7, 116);
  1302. this.label45.Name = "label45";
  1303. this.label45.Size = new System.Drawing.Size(89, 12);
  1304. this.label45.TabIndex = 831;
  1305. this.label45.Text = "小颗粒Xray时间";
  1306. //
  1307. // label46
  1308. //
  1309. this.label46.AutoSize = true;
  1310. this.label46.Location = new System.Drawing.Point(274, 116);
  1311. this.label46.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1312. this.label46.Name = "label46";
  1313. this.label46.Size = new System.Drawing.Size(17, 12);
  1314. this.label46.TabIndex = 830;
  1315. this.label46.Text = "ms";
  1316. //
  1317. // IDC_EDIT_QuantifyMinSize
  1318. //
  1319. this.IDC_EDIT_QuantifyMinSize.Location = new System.Drawing.Point(142, 63);
  1320. this.IDC_EDIT_QuantifyMinSize.MaxLength = 10;
  1321. this.IDC_EDIT_QuantifyMinSize.Name = "IDC_EDIT_QuantifyMinSize";
  1322. this.IDC_EDIT_QuantifyMinSize.Size = new System.Drawing.Size(117, 21);
  1323. this.IDC_EDIT_QuantifyMinSize.TabIndex = 829;
  1324. //
  1325. // label37
  1326. //
  1327. this.label37.AutoSize = true;
  1328. this.label37.Location = new System.Drawing.Point(7, 66);
  1329. this.label37.Name = "label37";
  1330. this.label37.Size = new System.Drawing.Size(53, 12);
  1331. this.label37.TabIndex = 828;
  1332. this.label37.Text = "分析阈值";
  1333. //
  1334. // label40
  1335. //
  1336. this.label40.AutoSize = true;
  1337. this.label40.Location = new System.Drawing.Point(273, 66);
  1338. this.label40.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1339. this.label40.Name = "label40";
  1340. this.label40.Size = new System.Drawing.Size(17, 12);
  1341. this.label40.TabIndex = 827;
  1342. this.label40.Text = "us";
  1343. //
  1344. // IDC_USINGXRAY_LIB
  1345. //
  1346. this.IDC_USINGXRAY_LIB.AutoSize = true;
  1347. this.IDC_USINGXRAY_LIB.Location = new System.Drawing.Point(278, 18);
  1348. this.IDC_USINGXRAY_LIB.Margin = new System.Windows.Forms.Padding(2);
  1349. this.IDC_USINGXRAY_LIB.Name = "IDC_USINGXRAY_LIB";
  1350. this.IDC_USINGXRAY_LIB.Size = new System.Drawing.Size(15, 14);
  1351. this.IDC_USINGXRAY_LIB.TabIndex = 826;
  1352. this.IDC_USINGXRAY_LIB.UseVisualStyleBackColor = true;
  1353. //
  1354. // label44
  1355. //
  1356. this.label44.AutoSize = true;
  1357. this.label44.Location = new System.Drawing.Point(8, 24);
  1358. this.label44.Name = "label44";
  1359. this.label44.Size = new System.Drawing.Size(83, 12);
  1360. this.label44.TabIndex = 825;
  1361. this.label44.Text = "是否使用X-ray";
  1362. //
  1363. // IDC_TEXTBOX_SEARCHXRAYSPEED_TIME
  1364. //
  1365. this.IDC_TEXTBOX_SEARCHXRAYSPEED_TIME.Location = new System.Drawing.Point(218, 226);
  1366. this.IDC_TEXTBOX_SEARCHXRAYSPEED_TIME.Margin = new System.Windows.Forms.Padding(2);
  1367. this.IDC_TEXTBOX_SEARCHXRAYSPEED_TIME.MaxLength = 10;
  1368. this.IDC_TEXTBOX_SEARCHXRAYSPEED_TIME.Name = "IDC_TEXTBOX_SEARCHXRAYSPEED_TIME";
  1369. this.IDC_TEXTBOX_SEARCHXRAYSPEED_TIME.Size = new System.Drawing.Size(50, 21);
  1370. this.IDC_TEXTBOX_SEARCHXRAYSPEED_TIME.TabIndex = 805;
  1371. this.IDC_TEXTBOX_SEARCHXRAYSPEED_TIME.Visible = false;
  1372. //
  1373. // label38
  1374. //
  1375. this.label38.AutoSize = true;
  1376. this.label38.Location = new System.Drawing.Point(269, 223);
  1377. this.label38.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1378. this.label38.Name = "label38";
  1379. this.label38.Size = new System.Drawing.Size(17, 12);
  1380. this.label38.TabIndex = 803;
  1381. this.label38.Text = "ms";
  1382. this.label38.Visible = false;
  1383. //
  1384. // label30
  1385. //
  1386. this.label30.AutoSize = true;
  1387. this.label30.Location = new System.Drawing.Point(0, 230);
  1388. this.label30.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1389. this.label30.Name = "label30";
  1390. this.label30.Size = new System.Drawing.Size(107, 12);
  1391. this.label30.TabIndex = 806;
  1392. this.label30.Text = "搜索X-ray最低计数";
  1393. this.label30.Visible = false;
  1394. //
  1395. // label29
  1396. //
  1397. this.label29.AutoSize = true;
  1398. this.label29.Location = new System.Drawing.Point(26, 227);
  1399. this.label29.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1400. this.label29.Name = "label29";
  1401. this.label29.Size = new System.Drawing.Size(83, 12);
  1402. this.label29.TabIndex = 801;
  1403. this.label29.Text = "搜索X-ray精度";
  1404. this.label29.Visible = false;
  1405. //
  1406. // IDC_EDIT_SEARCHXRAYCOUNTLIMIT
  1407. //
  1408. this.IDC_EDIT_SEARCHXRAYCOUNTLIMIT.Location = new System.Drawing.Point(111, 226);
  1409. this.IDC_EDIT_SEARCHXRAYCOUNTLIMIT.Margin = new System.Windows.Forms.Padding(2);
  1410. this.IDC_EDIT_SEARCHXRAYCOUNTLIMIT.MaxLength = 10;
  1411. this.IDC_EDIT_SEARCHXRAYCOUNTLIMIT.Name = "IDC_EDIT_SEARCHXRAYCOUNTLIMIT";
  1412. this.IDC_EDIT_SEARCHXRAYCOUNTLIMIT.Size = new System.Drawing.Size(155, 21);
  1413. this.IDC_EDIT_SEARCHXRAYCOUNTLIMIT.TabIndex = 807;
  1414. this.IDC_EDIT_SEARCHXRAYCOUNTLIMIT.Visible = false;
  1415. //
  1416. // IDC_COMBO_SEARCHXRAYSPEED
  1417. //
  1418. this.IDC_COMBO_SEARCHXRAYSPEED.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1419. this.IDC_COMBO_SEARCHXRAYSPEED.FormattingEnabled = true;
  1420. this.IDC_COMBO_SEARCHXRAYSPEED.Location = new System.Drawing.Point(112, 227);
  1421. this.IDC_COMBO_SEARCHXRAYSPEED.Margin = new System.Windows.Forms.Padding(2);
  1422. this.IDC_COMBO_SEARCHXRAYSPEED.Name = "IDC_COMBO_SEARCHXRAYSPEED";
  1423. this.IDC_COMBO_SEARCHXRAYSPEED.Size = new System.Drawing.Size(72, 20);
  1424. this.IDC_COMBO_SEARCHXRAYSPEED.TabIndex = 802;
  1425. this.IDC_COMBO_SEARCHXRAYSPEED.Visible = false;
  1426. //
  1427. // IDC_TEXTBOX_ANALYXRAYSPEED_TIME
  1428. //
  1429. this.IDC_TEXTBOX_ANALYXRAYSPEED_TIME.Location = new System.Drawing.Point(142, 87);
  1430. this.IDC_TEXTBOX_ANALYXRAYSPEED_TIME.MaxLength = 10;
  1431. this.IDC_TEXTBOX_ANALYXRAYSPEED_TIME.Name = "IDC_TEXTBOX_ANALYXRAYSPEED_TIME";
  1432. this.IDC_TEXTBOX_ANALYXRAYSPEED_TIME.Size = new System.Drawing.Size(117, 21);
  1433. this.IDC_TEXTBOX_ANALYXRAYSPEED_TIME.TabIndex = 782;
  1434. this.IDC_TEXTBOX_ANALYXRAYSPEED_TIME.TextChanged += new System.EventHandler(this.IDC_EDIT_SEARCHXRAYCOUNTLIMIT_TextChanged);
  1435. //
  1436. // IDC_COMBO_ANALYXRAYSPEED
  1437. //
  1438. this.IDC_COMBO_ANALYXRAYSPEED.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1439. this.IDC_COMBO_ANALYXRAYSPEED.FormattingEnabled = true;
  1440. this.IDC_COMBO_ANALYXRAYSPEED.Location = new System.Drawing.Point(36, 252);
  1441. this.IDC_COMBO_ANALYXRAYSPEED.Name = "IDC_COMBO_ANALYXRAYSPEED";
  1442. this.IDC_COMBO_ANALYXRAYSPEED.Size = new System.Drawing.Size(72, 20);
  1443. this.IDC_COMBO_ANALYXRAYSPEED.TabIndex = 780;
  1444. this.IDC_COMBO_ANALYXRAYSPEED.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_ANALYXRAYSPEED_SelectedIndexChanged);
  1445. //
  1446. // label32
  1447. //
  1448. this.label32.AutoSize = true;
  1449. this.label32.Location = new System.Drawing.Point(7, 90);
  1450. this.label32.Name = "label32";
  1451. this.label32.Size = new System.Drawing.Size(95, 12);
  1452. this.label32.TabIndex = 770;
  1453. this.label32.Text = "大颗粒X-ray时间";
  1454. //
  1455. // label39
  1456. //
  1457. this.label39.AutoSize = true;
  1458. this.label39.Location = new System.Drawing.Point(274, 90);
  1459. this.label39.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1460. this.label39.Name = "label39";
  1461. this.label39.Size = new System.Drawing.Size(17, 12);
  1462. this.label39.TabIndex = 721;
  1463. this.label39.Text = "ms";
  1464. //
  1465. // IDC_COMBO_XRAYSCANMODE
  1466. //
  1467. this.IDC_COMBO_XRAYSCANMODE.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1468. this.IDC_COMBO_XRAYSCANMODE.FormattingEnabled = true;
  1469. this.IDC_COMBO_XRAYSCANMODE.Location = new System.Drawing.Point(142, 40);
  1470. this.IDC_COMBO_XRAYSCANMODE.Margin = new System.Windows.Forms.Padding(2);
  1471. this.IDC_COMBO_XRAYSCANMODE.Name = "IDC_COMBO_XRAYSCANMODE";
  1472. this.IDC_COMBO_XRAYSCANMODE.Size = new System.Drawing.Size(150, 20);
  1473. this.IDC_COMBO_XRAYSCANMODE.TabIndex = 760;
  1474. this.IDC_COMBO_XRAYSCANMODE.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_XRAYSCANMODE_SelectedIndexChanged);
  1475. //
  1476. // IDC_EDIT_ANALYXRAYAIMVALUE
  1477. //
  1478. this.IDC_EDIT_ANALYXRAYAIMVALUE.Location = new System.Drawing.Point(142, 138);
  1479. this.IDC_EDIT_ANALYXRAYAIMVALUE.Margin = new System.Windows.Forms.Padding(2);
  1480. this.IDC_EDIT_ANALYXRAYAIMVALUE.MaxLength = 10;
  1481. this.IDC_EDIT_ANALYXRAYAIMVALUE.Name = "IDC_EDIT_ANALYXRAYAIMVALUE";
  1482. this.IDC_EDIT_ANALYXRAYAIMVALUE.Size = new System.Drawing.Size(150, 21);
  1483. this.IDC_EDIT_ANALYXRAYAIMVALUE.TabIndex = 800;
  1484. this.IDC_EDIT_ANALYXRAYAIMVALUE.TextChanged += new System.EventHandler(this.IDC_EDIT_ANALYXRAYAIMVALUE_TextChanged);
  1485. //
  1486. // label33
  1487. //
  1488. this.label33.AutoSize = true;
  1489. this.label33.Location = new System.Drawing.Point(6, 140);
  1490. this.label33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1491. this.label33.Name = "label33";
  1492. this.label33.Size = new System.Drawing.Size(119, 12);
  1493. this.label33.TabIndex = 790;
  1494. this.label33.Text = "分析X-ray计数期望值";
  1495. //
  1496. // label31
  1497. //
  1498. this.label31.AutoSize = true;
  1499. this.label31.Location = new System.Drawing.Point(7, 42);
  1500. this.label31.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1501. this.label31.Name = "label31";
  1502. this.label31.Size = new System.Drawing.Size(83, 12);
  1503. this.label31.TabIndex = 750;
  1504. this.label31.Text = "X-ray扫描方式";
  1505. //
  1506. // IDC_XRAY_COUNT_SWITCH
  1507. //
  1508. this.IDC_XRAY_COUNT_SWITCH.AutoSize = true;
  1509. this.IDC_XRAY_COUNT_SWITCH.Location = new System.Drawing.Point(709, 410);
  1510. this.IDC_XRAY_COUNT_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  1511. this.IDC_XRAY_COUNT_SWITCH.Name = "IDC_XRAY_COUNT_SWITCH";
  1512. this.IDC_XRAY_COUNT_SWITCH.Size = new System.Drawing.Size(15, 14);
  1513. this.IDC_XRAY_COUNT_SWITCH.TabIndex = 809;
  1514. this.IDC_XRAY_COUNT_SWITCH.UseVisualStyleBackColor = true;
  1515. this.IDC_XRAY_COUNT_SWITCH.Visible = false;
  1516. this.IDC_XRAY_COUNT_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_XRAY_COUNT_SWITCH_CheckedChanged);
  1517. //
  1518. // IDC_XRAY_TIME_SWITCH
  1519. //
  1520. this.IDC_XRAY_TIME_SWITCH.AutoSize = true;
  1521. this.IDC_XRAY_TIME_SWITCH.Location = new System.Drawing.Point(709, 385);
  1522. this.IDC_XRAY_TIME_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  1523. this.IDC_XRAY_TIME_SWITCH.Name = "IDC_XRAY_TIME_SWITCH";
  1524. this.IDC_XRAY_TIME_SWITCH.Size = new System.Drawing.Size(15, 14);
  1525. this.IDC_XRAY_TIME_SWITCH.TabIndex = 808;
  1526. this.IDC_XRAY_TIME_SWITCH.UseVisualStyleBackColor = true;
  1527. this.IDC_XRAY_TIME_SWITCH.Visible = false;
  1528. this.IDC_XRAY_TIME_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_XRAY_TIME_SWITCH_CheckedChanged);
  1529. //
  1530. // IDC_XRAY_MODE_SWITCH
  1531. //
  1532. this.IDC_XRAY_MODE_SWITCH.AutoSize = true;
  1533. this.IDC_XRAY_MODE_SWITCH.Location = new System.Drawing.Point(709, 361);
  1534. this.IDC_XRAY_MODE_SWITCH.Margin = new System.Windows.Forms.Padding(2);
  1535. this.IDC_XRAY_MODE_SWITCH.Name = "IDC_XRAY_MODE_SWITCH";
  1536. this.IDC_XRAY_MODE_SWITCH.Size = new System.Drawing.Size(15, 14);
  1537. this.IDC_XRAY_MODE_SWITCH.TabIndex = 693;
  1538. this.IDC_XRAY_MODE_SWITCH.UseVisualStyleBackColor = true;
  1539. this.IDC_XRAY_MODE_SWITCH.Visible = false;
  1540. this.IDC_XRAY_MODE_SWITCH.CheckedChanged += new System.EventHandler(this.IDC_XRAY_MODE_SWITCH_CheckedChanged);
  1541. //
  1542. // btnok
  1543. //
  1544. this.btnok.Location = new System.Drawing.Point(478, 606);
  1545. this.btnok.Margin = new System.Windows.Forms.Padding(2);
  1546. this.btnok.Name = "btnok";
  1547. this.btnok.Size = new System.Drawing.Size(66, 22);
  1548. this.btnok.TabIndex = 810;
  1549. this.btnok.Text = "确 定";
  1550. this.btnok.UseVisualStyleBackColor = true;
  1551. this.btnok.Click += new System.EventHandler(this.btnok_Click);
  1552. //
  1553. // btncancel
  1554. //
  1555. this.btncancel.Location = new System.Drawing.Point(561, 606);
  1556. this.btncancel.Margin = new System.Windows.Forms.Padding(2);
  1557. this.btncancel.Name = "btncancel";
  1558. this.btncancel.Size = new System.Drawing.Size(66, 22);
  1559. this.btncancel.TabIndex = 820;
  1560. this.btncancel.Text = "取 消";
  1561. this.btncancel.UseVisualStyleBackColor = true;
  1562. this.btncancel.Click += new System.EventHandler(this.btncancel_Click);
  1563. //
  1564. // folderBrowserDialog1
  1565. //
  1566. this.folderBrowserDialog1.ShowNewFolderButton = false;
  1567. //
  1568. // lbModelSel
  1569. //
  1570. this.lbModelSel.AutoSize = true;
  1571. this.lbModelSel.Location = new System.Drawing.Point(3, 23);
  1572. this.lbModelSel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1573. this.lbModelSel.Name = "lbModelSel";
  1574. this.lbModelSel.Size = new System.Drawing.Size(53, 12);
  1575. this.lbModelSel.TabIndex = 22;
  1576. this.lbModelSel.Text = "模式选择";
  1577. //
  1578. // IDC_COMBO_Model
  1579. //
  1580. this.IDC_COMBO_Model.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1581. this.IDC_COMBO_Model.FormattingEnabled = true;
  1582. this.IDC_COMBO_Model.Location = new System.Drawing.Point(117, 21);
  1583. this.IDC_COMBO_Model.Margin = new System.Windows.Forms.Padding(2);
  1584. this.IDC_COMBO_Model.Name = "IDC_COMBO_Model";
  1585. this.IDC_COMBO_Model.Size = new System.Drawing.Size(140, 20);
  1586. this.IDC_COMBO_Model.TabIndex = 21;
  1587. this.IDC_COMBO_Model.SelectedIndexChanged += new System.EventHandler(this.IDC_COMBO_Model_SelectedIndexChanged);
  1588. //
  1589. // groupBox7
  1590. //
  1591. this.groupBox7.Controls.Add(this.lbModelSel);
  1592. this.groupBox7.Controls.Add(this.IDC_COMBO_Model);
  1593. this.groupBox7.Location = new System.Drawing.Point(6, 2);
  1594. this.groupBox7.Name = "groupBox7";
  1595. this.groupBox7.Size = new System.Drawing.Size(302, 57);
  1596. this.groupBox7.TabIndex = 822;
  1597. this.groupBox7.TabStop = false;
  1598. this.groupBox7.Text = "模式选择";
  1599. //
  1600. // IDC_EDIT_STOP_INCA_AREA
  1601. //
  1602. this.IDC_EDIT_STOP_INCA_AREA.Location = new System.Drawing.Point(760, 540);
  1603. this.IDC_EDIT_STOP_INCA_AREA.Margin = new System.Windows.Forms.Padding(2);
  1604. this.IDC_EDIT_STOP_INCA_AREA.MaxLength = 10;
  1605. this.IDC_EDIT_STOP_INCA_AREA.Name = "IDC_EDIT_STOP_INCA_AREA";
  1606. this.IDC_EDIT_STOP_INCA_AREA.Size = new System.Drawing.Size(117, 21);
  1607. this.IDC_EDIT_STOP_INCA_AREA.TabIndex = 824;
  1608. this.IDC_EDIT_STOP_INCA_AREA.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1609. this.IDC_EDIT_STOP_INCA_AREA.Visible = false;
  1610. //
  1611. // label48
  1612. //
  1613. this.label48.AutoSize = true;
  1614. this.label48.Location = new System.Drawing.Point(675, 542);
  1615. this.label48.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1616. this.label48.Name = "label48";
  1617. this.label48.Size = new System.Drawing.Size(77, 12);
  1618. this.label48.TabIndex = 823;
  1619. this.label48.Text = "终止测量面积";
  1620. this.label48.Visible = false;
  1621. //
  1622. // label50
  1623. //
  1624. this.label50.AutoSize = true;
  1625. this.label50.Location = new System.Drawing.Point(6, 181);
  1626. this.label50.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1627. this.label50.Name = "label50";
  1628. this.label50.Size = new System.Drawing.Size(77, 12);
  1629. this.label50.TabIndex = 824;
  1630. this.label50.Text = "图像重叠像素";
  1631. //
  1632. // label51
  1633. //
  1634. this.label51.AutoSize = true;
  1635. this.label51.Location = new System.Drawing.Point(225, 181);
  1636. this.label51.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1637. this.label51.Name = "label51";
  1638. this.label51.Size = new System.Drawing.Size(35, 12);
  1639. this.label51.TabIndex = 721;
  1640. this.label51.Text = "pixel";
  1641. //
  1642. // IDC_EDIT_Overlap
  1643. //
  1644. this.IDC_EDIT_Overlap.Location = new System.Drawing.Point(125, 178);
  1645. this.IDC_EDIT_Overlap.MaxLength = 10;
  1646. this.IDC_EDIT_Overlap.Name = "IDC_EDIT_Overlap";
  1647. this.IDC_EDIT_Overlap.Size = new System.Drawing.Size(92, 21);
  1648. this.IDC_EDIT_Overlap.TabIndex = 832;
  1649. this.IDC_EDIT_Overlap.Text = "20";
  1650. //
  1651. // ProgMgrInfoForm
  1652. //
  1653. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1654. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1655. this.ClientSize = new System.Drawing.Size(644, 637);
  1656. this.Controls.Add(this.IDC_EDIT_STOP_INCA_AREA);
  1657. this.Controls.Add(this.label48);
  1658. this.Controls.Add(this.IDC_IMAGE_SIZE_SWITCH);
  1659. this.Controls.Add(this.groupBox7);
  1660. this.Controls.Add(this.IDC_EDIT_STOP_INCA_NUM);
  1661. this.Controls.Add(this.IDC_SCAN_SPEED_SWITCH);
  1662. this.Controls.Add(this.IDC_EDIT_STOP_FIELD_NUM);
  1663. this.Controls.Add(this.IDC_EDIT_STOP_TIME);
  1664. this.Controls.Add(this.btncancel);
  1665. this.Controls.Add(this.IDC_FETCH_IMAGE_SWITCH);
  1666. this.Controls.Add(this.IDC_XRAY_COUNT_SWITCH);
  1667. this.Controls.Add(this.IDC_STOP_PARTICAL_SWITCH);
  1668. this.Controls.Add(this.btnok);
  1669. this.Controls.Add(this.IDC_STOP_FIELD_SWITCH);
  1670. this.Controls.Add(this.IDC_PART_GRAY_MIN_SWITCH);
  1671. this.Controls.Add(this.label10);
  1672. this.Controls.Add(this.IDC_STOP_TIME_SWITCH);
  1673. this.Controls.Add(this.label9);
  1674. this.Controls.Add(this.IDC_XRAY_TIME_SWITCH);
  1675. this.Controls.Add(this.label8);
  1676. this.Controls.Add(this.groupBox6);
  1677. this.Controls.Add(this.IDC_STOP_MODE_SWITCH);
  1678. this.Controls.Add(this.IDC_BACK_MIN_SWITCH);
  1679. this.Controls.Add(this.IDC_PART_MIN_SWITCH);
  1680. this.Controls.Add(this.IDC_XRAY_MODE_SWITCH);
  1681. this.Controls.Add(this.IDC_PART_GRAY_MAX_SWITCH);
  1682. this.Controls.Add(this.groupBox5);
  1683. this.Controls.Add(this.IDC_BACK_MAX_SWITCH);
  1684. this.Controls.Add(this.groupBox4);
  1685. this.Controls.Add(this.IDC_PART_MAX_SWITCH);
  1686. this.Controls.Add(this.groupBox3);
  1687. this.Controls.Add(this.groupBox2);
  1688. this.Controls.Add(this.groupBox1);
  1689. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  1690. this.Margin = new System.Windows.Forms.Padding(2);
  1691. this.MaximizeBox = false;
  1692. this.MinimizeBox = false;
  1693. this.MinimumSize = new System.Drawing.Size(643, 640);
  1694. this.Name = "ProgMgrInfoForm";
  1695. this.ShowIcon = false;
  1696. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  1697. this.Text = "程序管理";
  1698. this.Load += new System.EventHandler(this.ProgMgrInfoForm_Load);
  1699. this.groupBox1.ResumeLayout(false);
  1700. this.groupBox1.PerformLayout();
  1701. this.groupBox2.ResumeLayout(false);
  1702. this.groupBox2.PerformLayout();
  1703. this.groupBox3.ResumeLayout(false);
  1704. this.groupBox3.PerformLayout();
  1705. this.groupBox4.ResumeLayout(false);
  1706. this.groupBox4.PerformLayout();
  1707. this.groupBox5.ResumeLayout(false);
  1708. this.groupBox5.PerformLayout();
  1709. this.groupBox6.ResumeLayout(false);
  1710. this.groupBox6.PerformLayout();
  1711. this.groupBox7.ResumeLayout(false);
  1712. this.groupBox7.PerformLayout();
  1713. this.ResumeLayout(false);
  1714. this.PerformLayout();
  1715. }
  1716. #endregion
  1717. private System.Windows.Forms.GroupBox groupBox1;
  1718. private System.Windows.Forms.GroupBox groupBox2;
  1719. private System.Windows.Forms.GroupBox groupBox3;
  1720. private System.Windows.Forms.GroupBox groupBox4;
  1721. private System.Windows.Forms.GroupBox groupBox5;
  1722. private System.Windows.Forms.GroupBox groupBox6;
  1723. private System.Windows.Forms.Button btnok;
  1724. private System.Windows.Forms.Button btncancel;
  1725. private System.Windows.Forms.Label label1;
  1726. private System.Windows.Forms.Label label6;
  1727. private System.Windows.Forms.Label label5;
  1728. private System.Windows.Forms.Label label4;
  1729. private System.Windows.Forms.Label label3;
  1730. private System.Windows.Forms.Label label2;
  1731. private System.Windows.Forms.Label label13;
  1732. private System.Windows.Forms.Label label12;
  1733. private System.Windows.Forms.Label label11;
  1734. private System.Windows.Forms.Label label10;
  1735. private System.Windows.Forms.Label label9;
  1736. private System.Windows.Forms.Label label8;
  1737. private System.Windows.Forms.Label label7;
  1738. private System.Windows.Forms.Label label14;
  1739. private System.Windows.Forms.Label label19;
  1740. private System.Windows.Forms.Label label18;
  1741. private System.Windows.Forms.Label label16;
  1742. private System.Windows.Forms.Label label15;
  1743. private System.Windows.Forms.Label label22;
  1744. private System.Windows.Forms.Label label21;
  1745. private System.Windows.Forms.Label label20;
  1746. private System.Windows.Forms.Label label25;
  1747. private System.Windows.Forms.Label label24;
  1748. private System.Windows.Forms.Label label28;
  1749. private System.Windows.Forms.Label label27;
  1750. private System.Windows.Forms.Label label26;
  1751. private System.Windows.Forms.Label label23;
  1752. private System.Windows.Forms.Label label33;
  1753. private System.Windows.Forms.Label label32;
  1754. private System.Windows.Forms.Label label31;
  1755. private System.Windows.Forms.Label label35;
  1756. private System.Windows.Forms.Label label34;
  1757. public System.Windows.Forms.ComboBox IDC_COMBO_STAGE;
  1758. public System.Windows.Forms.Button IDC_BUTTON_STAGE;
  1759. public System.Windows.Forms.ComboBox IDC_COMBO_YDIRECT;
  1760. public System.Windows.Forms.ComboBox IDC_COMBO_XDIREC;
  1761. public System.Windows.Forms.ComboBox IDC_COMBO_IMGSIZE;
  1762. public System.Windows.Forms.ComboBox IDC_COMBO_IMGSCANSPEED;
  1763. public System.Windows.Forms.ComboBox IDC_COMBO_FETCHIMGMODE;
  1764. public System.Windows.Forms.TextBox IDC_EDIT_SAMPLENAME;
  1765. public System.Windows.Forms.TextBox IDC_EDIT_YEND;
  1766. public System.Windows.Forms.TextBox IDC_EDIT_YSTART;
  1767. public System.Windows.Forms.TextBox IDC_EDIT_XEND;
  1768. public System.Windows.Forms.TextBox IDC_EDIT_XSTART;
  1769. public System.Windows.Forms.TextBox IDC_EDIT_STOP_INCA_NUM;
  1770. public System.Windows.Forms.TextBox IDC_EDIT_STOP_FIELD_NUM;
  1771. public System.Windows.Forms.TextBox IDC_EDIT_STOP_TIME;
  1772. public System.Windows.Forms.TextBox IDC_EDIT_ANALYSESTDLIBPATH;
  1773. public System.Windows.Forms.TextBox IDC_EDIT_MEASUREPARAMPATH;
  1774. public System.Windows.Forms.Button IDC_BUTTON_MEASPRAMPATHSET;
  1775. public System.Windows.Forms.CheckBox IDC_MEAS_SWITCH;
  1776. public System.Windows.Forms.TextBox IDC_EDIT_PARTAREAMIN;
  1777. public System.Windows.Forms.TextBox IDC_EDIT_PARTMAX;
  1778. public System.Windows.Forms.TextBox IDC_EDIT_PARTMIN;
  1779. public System.Windows.Forms.TextBox IDC_EDIT_BACKMAX;
  1780. public System.Windows.Forms.TextBox IDC_EDIT_BACKMIN;
  1781. public System.Windows.Forms.TextBox IDC_EDIT_PARTAREAMAX;
  1782. public System.Windows.Forms.ComboBox IDC_COMBO_ANALYXRAYSPEED;
  1783. public System.Windows.Forms.ComboBox IDC_COMBO_XRAYSCANMODE;
  1784. public System.Windows.Forms.TextBox IDC_EDIT_ANALYXRAYAIMVALUE;
  1785. public System.Windows.Forms.TextBox IDC_EDIT_SCREENWIDTH;
  1786. public System.Windows.Forms.TextBox IDC_EDIT_MINMAG;
  1787. private System.Windows.Forms.Label label36;
  1788. public System.Windows.Forms.TextBox IDC_TEXTBOX_ANALYXRAYSPEED_TIME;
  1789. private System.Windows.Forms.Label label39;
  1790. public System.Windows.Forms.TextBox IDC_TEXTBOX_SEARCHXRAYSPEED_TIME;
  1791. private System.Windows.Forms.Label label38;
  1792. private System.Windows.Forms.Label label30;
  1793. private System.Windows.Forms.Label label29;
  1794. public System.Windows.Forms.TextBox IDC_EDIT_SEARCHXRAYCOUNTLIMIT;
  1795. public System.Windows.Forms.ComboBox IDC_COMBO_SEARCHXRAYSPEED;
  1796. private System.Windows.Forms.Label label41;
  1797. public System.Windows.Forms.ComboBox IDC_COMBO_TECHNOLOGY;
  1798. private System.Windows.Forms.Label label42;
  1799. public System.Windows.Forms.CheckBox IDC_IMAGE_SIZE_SWITCH;
  1800. public System.Windows.Forms.CheckBox IDC_SCAN_SPEED_SWITCH;
  1801. public System.Windows.Forms.CheckBox IDC_FETCH_IMAGE_SWITCH;
  1802. public System.Windows.Forms.CheckBox IDC_STOP_PARTICAL_SWITCH;
  1803. public System.Windows.Forms.CheckBox IDC_STOP_FIELD_SWITCH;
  1804. public System.Windows.Forms.CheckBox IDC_STOP_TIME_SWITCH;
  1805. public System.Windows.Forms.CheckBox IDC_STOP_MODE_SWITCH;
  1806. public System.Windows.Forms.CheckBox IDC_PART_GRAY_MIN_SWITCH;
  1807. public System.Windows.Forms.CheckBox IDC_BACK_MIN_SWITCH;
  1808. public System.Windows.Forms.CheckBox IDC_PART_MIN_SWITCH;
  1809. public System.Windows.Forms.CheckBox IDC_PART_GRAY_MAX_SWITCH;
  1810. public System.Windows.Forms.CheckBox IDC_BACK_MAX_SWITCH;
  1811. public System.Windows.Forms.CheckBox IDC_PART_MAX_SWITCH;
  1812. public System.Windows.Forms.CheckBox IDC_XRAY_COUNT_SWITCH;
  1813. public System.Windows.Forms.CheckBox IDC_XRAY_TIME_SWITCH;
  1814. public System.Windows.Forms.CheckBox IDC_XRAY_MODE_SWITCH;
  1815. private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
  1816. private System.Windows.Forms.Label lbShape;
  1817. public System.Windows.Forms.TextBox tBMeasArea;
  1818. public System.Windows.Forms.ComboBox cBMeasShape;
  1819. private System.Windows.Forms.Label lbArea;
  1820. public System.Windows.Forms.Button IDC_BUTTON_KLFX;
  1821. public System.Windows.Forms.CheckBox IDC_SYS_LIB;
  1822. private System.Windows.Forms.Label label17;
  1823. public System.Windows.Forms.ComboBox IDC_COMBO_STDSelect;
  1824. private System.Windows.Forms.Label label44;
  1825. public System.Windows.Forms.ComboBox IDC_COMBO_AUTOBGREMOVETYP;
  1826. private System.Windows.Forms.Label label_Auto;
  1827. public System.Windows.Forms.ComboBox IDC_COMBO_BGREMOVETYPE;
  1828. private System.Windows.Forms.Label label43;
  1829. private System.Windows.Forms.Label lbModelSel;
  1830. public System.Windows.Forms.ComboBox IDC_COMBO_Model;
  1831. private System.Windows.Forms.GroupBox groupBox7;
  1832. public System.Windows.Forms.CheckBox IDC_USINGXRAY_LIB;
  1833. public System.Windows.Forms.TextBox IDC_EDIT_SmallPartAQTime;
  1834. private System.Windows.Forms.Label label45;
  1835. private System.Windows.Forms.Label label46;
  1836. public System.Windows.Forms.TextBox IDC_EDIT_QuantifyMinSize;
  1837. private System.Windows.Forms.Label label37;
  1838. private System.Windows.Forms.Label label40;
  1839. public System.Windows.Forms.TextBox IDC_EDIT_XrayLimit;
  1840. private System.Windows.Forms.Label label47;
  1841. private System.Windows.Forms.TextBox tB_StopMode;
  1842. private System.Windows.Forms.Button btn_StopMode;
  1843. public System.Windows.Forms.TextBox IDC_EDIT_STOP_INCA_AREA;
  1844. private System.Windows.Forms.Label label48;
  1845. private System.Windows.Forms.ComboBox IDC_COMBO_CorrosionExpansionCoefficient;
  1846. private System.Windows.Forms.Label label49;
  1847. private System.Windows.Forms.Label label50;
  1848. private System.Windows.Forms.Label label51;
  1849. public System.Windows.Forms.TextBox IDC_EDIT_Overlap;
  1850. }
  1851. }