AppResource_EN.xml 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <Resource>
  3. <!-- OTSSysMgrApp -->
  4. <Form>
  5. <Name>OTSSystemManagerForms</Name>
  6. <Controls>
  7. <Control name="tabHardwareSet" text="HardwareSet" />
  8. <Control name="tabLanguage" text="LanguageSet" />
  9. <Control name="tabSysType" text="SystemTypeSet" />
  10. <Control name="tabother" text="OtherSet" />
  11. <Control name="btn_otherconfig" text="OtherConfig" />
  12. <Control name="rdb_ch" text="Chinese[ZH]" />
  13. <Control name="rdb_en" text="English[EN]" />
  14. <Control name="btnEDSTest" text="EDSTest" />
  15. <Control name="btnSEMTest" text="SEMTest" />
  16. <Control name="lblHEDSController" text="EDSController" />
  17. <Control name="lblHSEMController" text="SEMController" />
  18. <Control name="label1" text="BrukerVersion" />
  19. <Control name="lblLanguage" text="Language" />
  20. <Control name="str1" text="Please select the type of electron microscope you want to set up!" />
  21. </Controls>
  22. </Form>
  23. <Form>
  24. <Name>ControllerSettingForm</Name>
  25. <Controls>
  26. <Control name="tabXRay" text="X-RayTest" />
  27. <Control name="tabImage2" text="AxialOrientationTest" />
  28. <Control name="lblCollectionTime" text="Collection" />
  29. <Control name="groupBox1" text="ImageDisplay" />
  30. <Control name="btnDisplayXRay" text="DisplayXRay" />
  31. <Control name="tabImage" text="BSETest" />
  32. <Control name="groupBox2" text="ImageDisplay" />
  33. <Control name="btnDisplay" text="ImageAcquisition" />
  34. <Control name="lblDwellTime" text="Collection" />
  35. <Control name="lblResolution" text="Resolution" />
  36. <Control name="btnSaveImage" text="SaveImage" />
  37. <Control name="btnAreaRay" text="AreaRay" />
  38. <Control name="btnPointXRay" text="PointXRay" />
  39. <Control name="btnClearData" text="Clear" />
  40. <Control name="btnEanalysis" text="Eanalysis" />
  41. <Control name="btn_Recommendedconfiguration" text="Recommendedconfiguration" />
  42. <Control name="label5" text="Please debug at 100 magnification" />
  43. <Control name="btn_continuousshot" text="DirectionVerification" />
  44. <Control name="btn_confirm" text="Save" />
  45. <Control name="label_x" text="Xdirection" />
  46. <Control name="label_y" text="Ydirection" />
  47. <Control name="label1" text="100Screenwidth" />
  48. <Control name="label4" text="Resolution" />
  49. <Control name="str1" text="Collecting" />
  50. <Control name="str2" text="No image information was obtained! " />
  51. <Control name="message1" text="Please enter the parameters to be set!" />
  52. <Control name="message2" text="Successful connection of hardware devices!" />
  53. <Control name="message3" text="Failed to connect hardware device!" />
  54. <Control name="message4" text="Successful setup!" />
  55. <Control name="message5" text="Setting failed, please check whether the hardware is connected!" />
  56. <Control name="message6" text="Achieve success!" />
  57. <Control name="message7" text="Access failed, please check whether the hardware is connected!" />
  58. <Control name="message8" text="Error in content format!" />
  59. <Control name="message9" text="Unconnected hardware device!" />
  60. <Control name="message10" text="Disconnected from hardware device!" />
  61. </Controls>
  62. </Form>
  63. <Form>
  64. <Name>SemTestForms</Name>
  65. <Controls>
  66. <Control name="BtnConnect" text="Connect" />
  67. <Control name="gbGetMethods" text="gbGetMethods" />
  68. <Control name="lblGSemScanFieldY" text="SemScanFieldY" />
  69. <Control name="lblGSemScanFieldX" text="SemScanFieldX" />
  70. <Control name="lblGHT" text="Voltage" />
  71. <Control name="lblGScanMode" text="ScanMode" />
  72. <Control name="lblGKV" text="VoltageValue" />
  73. <Control name="lblGFWD" text="WorkDistance" />
  74. <Control name="lblGContrast" text="Contrast" />
  75. <Control name="lblGBrightness" text="Brightness" />
  76. <Control name="lblGSpotSize" text="SpotSize" />
  77. <Control name="lblGMagnification" text="Magnification" />
  78. <Control name="lblGPositionR" text="PositionR" />
  79. <Control name="lblGBeamBlank" text="BeamBlank" />
  80. <Control name="lblGPositionY" text="Y" />
  81. <Control name="lblGPositionX" text="X" />
  82. <Control name="btnDone" text="Done" />
  83. <Control name="btnGPositionXYR" text="Get" />
  84. <Control name="btnGContrast" text="Get" />
  85. <Control name="btnGBrightness" text="Get" />
  86. <Control name="btnGScanMode" text="Get" />
  87. <Control name="btnGLienTime" text="Get" />
  88. <Control name="btnGFWD" text="Get" />
  89. <Control name="btnGMagnification" text="Get" />
  90. <Control name="btnGBeamBlank" text="Get" />
  91. <Control name="btnGKV" text="Get" />
  92. <Control name="btnGSpotSize" text="Get" />
  93. <Control name="btnGSemScanFieldXY" text="Get" />
  94. <Control name="gbSetMethods" text="SetMethods" />
  95. <Control name="btnSContrast" text="Set" />
  96. <Control name="btnScanMode" text="Set" />
  97. <Control name="btnSLienTime" text="Set" />
  98. <Control name="btnSFWD" text="Set" />
  99. <Control name="btnSMagnification" text="Set" />
  100. <Control name="btnSBeamBlank" text="Set" />
  101. <Control name="btnSKV" text="Set" />
  102. <Control name="btnSBrightness" text="Set" />
  103. <Control name="btnSSpotSize" text="Set" />
  104. <Control name="btnSPositionXYR" text="Set" />
  105. <Control name="btnHT" text="Get" />
  106. <Control name="btnSHT" text="Set" />
  107. <Control name="btnSSemScanFieldXY" text="Set" />
  108. <Control name="label15" text="ScanningMatrixY-axis" />
  109. <Control name="label14" text="ScanningMatrixX-axis" />
  110. <Control name="label13" text="Voltage" />
  111. <Control name="label12" text="ScanningMode" />
  112. <Control name="label11" text="VoltageValue" />
  113. <Control name="label1" text="X-axis" />
  114. <Control name="label10" text="WorkDistance" />
  115. <Control name="label3" text="Y" />
  116. <Control name="label9" text="Contrast" />
  117. <Control name="label4" text="BeamBaffle" />
  118. <Control name="label5" text="Angle" />
  119. <Control name="label8" text="Brightness" />
  120. <Control name="label6" text="Magnification" />
  121. <Control name="label7" text="SpotSize" />
  122. <Control name="message1" text="Please enter the parameters to be set!" />
  123. <Control name="message2" text="Successful connection of hardware devices!" />
  124. <Control name="message3" text="Failed to connect hardware device!" />
  125. <Control name="message4" text="Successful setup!" />
  126. <Control name="message5" text="Setting failed, please check whether the hardware is connected!" />
  127. <Control name="message6" text="Achieve success!" />
  128. <Control name="message7" text="Access failed, please check whether the hardware is connected!" />
  129. <Control name="message8" text="Error in content format!" />
  130. <Control name="message9" text="Unconnected hardware device!" />
  131. <Control name="message10" text="Disconnected from hardware device!" />
  132. <Control name="str1" text="Close connection" />
  133. <Control name="str2" text="Connect" />
  134. </Controls>
  135. </Form>
  136. <!-- OTSIncAReportApp -->
  137. <Form>
  138. <Name>frmReportApp</Name>
  139. <Controls>
  140. <Control name="dpbNew" text="New" />
  141. <Control name="rbClose" text="Close"/>
  142. <Control name="dpbOpen" text="Open" />
  143. <Control name="dpbSave" text="Save" />
  144. <Control name="dpbSaveAS" text="SaveAs" />
  145. <Control name="dpbExport" text="Export" />
  146. <Control name="dpbCopy" text="Copy" />
  147. <Control name="dpbCopyAll" text="CopyAll" />
  148. <Control name="dpbUnDo" text="UnDo" />
  149. <Control name="dpbReDo" text="ReDo" />
  150. <Control name="ribbonOrbOptionButton1" text="Management" />
  151. <Control name="ribbonTab1" text="BasicFunction" />
  152. <Control name="ribbonPanel3" text="File" />
  153. <Control name="ribbonPanelOthers" text="Others" />
  154. <Control name="rbSelTool" text="Matching" />
  155. <Control name="rbAllImage" text="FullMatching" />
  156. <Control name="rbWidthImage" text="WidthMatching" />
  157. <Control name="rbChoiceTools" text="ChoiceTools" />
  158. <Control name="rbChoiceParticle" text="particle" />
  159. <Control name="rbReMeasure" text="ReMeasure" />
  160. <Control name="rbReverseSelection" text="ReverseSelection" />
  161. <Control name="rbCircular" text="Circular" />
  162. <Control name="rbRectangle" text="Rectangle" />
  163. <Control name="rbCancel" text="Cancel" />
  164. <Control name="rbOther" text="Other" />
  165. <Control name="rbRecap" text="Reclassification" />
  166. <Control name="rbMenu" text="Menu" />
  167. <Control name="rbOpen" text="Open" />
  168. <Control name="rbStaff" text="Staff" />
  169. <Control name="ribbonPanel2" text="Graphic" />
  170. <Control name="rbFrame" text="FrameBorder" />
  171. <Control name="rbRenew" text="Renew" />
  172. <Control name="rbGB1" text="StandardOne" />
  173. <Control name="rbGB2" text="StandardTwo" />
  174. <Control name="RSGrayVal" text="GrayValue" />
  175. <Control name="mouseMatter" text="MouseMatter" />
  176. <Control name="ribbonOrbMenuItem5" text="Copy" />
  177. <Control name="rbHelp" text="Help" />
  178. <Control name="ribbonOrbMenuItem_Extremum" text="Extremum" />
  179. <Control name="ribbonOrbMenuItem_InclusionsTraceability" text="InclusionsTraceability" />
  180. <Control name="ribbonOrbMenuItem_purity" text="Purity" />
  181. <Control name="message1" text="Now there are open measurement results files which will not be saved after new projects are built. Are you sure to build a new one?" />
  182. <Control name="AnalysisDiagram" text="Analysis diagram" />
  183. <Control name="AnalysisDataSheet" text="Analysis data sheet" />
  184. <Control name="AnalysisDataChart" text="Analysis data chart" />
  185. <Control name="dpbTemplateEditing" text="TemplateEditing"/>
  186. </Controls>
  187. </Form>
  188. <Form>
  189. <Name>ParticlesGridDevidePageShowConfig</Name>
  190. <Controls>
  191. <Control name="groupBox2" text="Display Settings"/>
  192. <Control name="label1" text="Element:"/>
  193. <Control name="label2" text="Display"/>
  194. <Control name="btn_xsys" text="Select"/>
  195. <Control name="btn_auto" text="Auto"/>
  196. <Control name="btn_ybcsbc" text="Ok"/>
  197. <Control name="btn_ybcsqx" text="Cancel"/>
  198. <Control name="cb_Area" text="Area um²"/>
  199. <Control name="cb_EquivalentCircleDiameter" text="Dequalcircle"/>
  200. <Control name="cb_MaxDiameter" text="Dmax"/>
  201. <Control name="cb_MinDiameter" text="Dmin"/>
  202. <Control name="cb_DiameterRatio" text="Aspect"/>
  203. <Control name="cb_FerretDiameter" text="Dferet"/>
  204. <Control name="cb_PERP" text="Dperp"/>
  205. <Control name="cb_PERI" text="Perimeter um"/>
  206. <Control name="cb_INSCR" text="Inscribed circle"/>
  207. <Control name="cb_MEAN" text="Dmean"/>
  208. <Control name="cb_ELONG" text="Expansion"/>
  209. <Control name="cb_ASPECT_ELONG" text="Expanded"/>
  210. <Control name="cb_Orientation" text="0rientation"/>
  211. <Control name="cb_ParticleCoordinate" text="Particle Pos"/>
  212. <Control name="cB_XRayDataCount" text="XRay Count"/>
  213. <Control name="cB_Density" text="Density" />
  214. <Control name="cB_Electrical_conductivity" text="Conductivity" />
  215. <Control name="cB_Hardness" text="Hardness" />
  216. </Controls>
  217. </Form>
  218. <Form>
  219. <Name>Category</Name>
  220. <Controls>
  221. <Control name="label1" text="Selected category:"/>
  222. <Control name="label2" text="Database classification:"/>
  223. <Control name="button1" text="Add"/>
  224. <Control name="button2" text="Delete"/>
  225. <Control name="button3" text="Save"/>
  226. <Control name="button4" text="Exit"/>
  227. <Control name="Category" text="Classification"/>
  228. </Controls>
  229. </Form>
  230. <Form>
  231. <Name>frmPartSizeEditorNew</Name>
  232. <Controls>
  233. <Control name="frmPartSizeEditorNew" text="Granular file editor" />
  234. <Control name="label3" text="route" />
  235. <Control name="label1" text="ParticleSizeName" />
  236. <Control name="label2" text="ParticleSizeValue" />
  237. <Control name="button4" text="Save as"/>
  238. <Control name="button1" text="Save" />
  239. <Control name="button2" text="determine" />
  240. <Control name="button3" text="close" />
  241. </Controls>
  242. </Form>
  243. <Form>
  244. <Name>frmMeasureRstMgr</Name>
  245. <Controls>
  246. <Control name="RDeleteNode" text="DeleteNode" />
  247. <Control name="AddSample" text="AddSample" />
  248. <Control name="button1" text="MultipleDataSources" />
  249. <Control name="frmMeasureRstMgr" text="MeasurementResult" />
  250. <Control name="str1" text="Delete " />
  251. <Control name="str2" text=" file?" />
  252. </Controls>
  253. </Form>
  254. <Form>
  255. <Name>frmReportConditionChoose</Name>
  256. <Controls>
  257. <Control name="frmReportConditionChoose" text="QueryParameter" />
  258. </Controls>
  259. </Form>
  260. <Form>
  261. <Name>frmMultiSourceSelect</Name>
  262. <Controls>
  263. <Control name="button1" text="Determine" />
  264. <Control name="button2" text="Cancel " />
  265. <Control name="frmMultiSourceSelect" text="MultiSourceSelect" />
  266. </Controls>
  267. </Form>
  268. <Form>
  269. <Name>OTSReportDockWindow</Name>
  270. <Controls>
  271. <Control name="SampleImageWindowName" text="AnalysisChart" />
  272. <Control name="CTablesWindowName" text="AnalyticalDataTable " />
  273. <Control name="CChartssWindowName" text="AnalyticalDataGraph" />
  274. </Controls>
  275. </Form>
  276. <Form>
  277. <Name>frmParticleSizeAdd</Name>
  278. <Controls>
  279. <Control name="label1" text="Size" />
  280. <Control name="btn_Sure" text="Sure " />
  281. <Control name="btn_Cancel" text="Cancel" />
  282. <Control name="frmParticleSizeAdd" text="ParticleSizeAdd" />
  283. <Control name="str1" text="The maximum value of filling in grain size can not be empty." />
  284. </Controls>
  285. </Form>
  286. <Form>
  287. <Name>frmPartSizeEditor</Name>
  288. <Controls>
  289. <Control name="groupBox1" text="ParticleSize" />
  290. <Control name="btn_Level" text="ParticleSizeADD" />
  291. <Control name="btn_ljedit" text="Sure" />
  292. <Control name="btn_ljdqpsf" text="OPen" />
  293. <Control name="btn_save" text="SaveAs" />
  294. <Control name="btn_ljqx" text="Cancel" />
  295. <Control name="groupBox2" text="ParticleSizeName" />
  296. <Control name="GrainSize" text="ParticleSize" />
  297. <Control name="Delete" text="Delete" />
  298. <Control name="frmPartSizeEditor" text="PartSizeEditor" />
  299. </Controls>
  300. </Form>
  301. <Form>
  302. <Name>Triangulation_List</Name>
  303. <Controls>
  304. <Control name="Triangulation_List" text="Ternary phase diagram template list" />
  305. <Control name="button1" text="add" />
  306. <Control name="button2" text="close" />
  307. </Controls>
  308. </Form>
  309. <Form>
  310. <Name>Triangulation_Edit</Name>
  311. <Controls>
  312. <Control name="Triangulation_Edit" text="Ternary phase diagram template editing" />
  313. </Controls>
  314. </Form>
  315. <Form>
  316. <Name>frmSampleImage</Name>
  317. <Controls>
  318. <Control name="GeneralParameters" text="General parameters" />
  319. </Controls>
  320. </Form>
  321. <Form>
  322. <Name>frmTables</Name>
  323. <Controls>
  324. <Control name="GeneralParameters" text="General parameters" />
  325. </Controls>
  326. </Form>
  327. <Form>
  328. <Name>frmReportSysConfig</Name>
  329. <Controls>
  330. <Control name="button18" text="Add" />
  331. <Control name="button17" text="Update" />
  332. <Control name="button16" text="Delete" />
  333. <Control name="button15" text="Cancel" />
  334. <Control name="groupBox3" text="ParticleSizeFile" />
  335. <Control name="label16" text="ParticleSize" />
  336. <Control name="label4" text="ParticleSizeFolder" />
  337. <Control name="label20" text="AnalysisStandard" />
  338. <Control name="btn_ybcsqx" text="Cancel" />
  339. <Control name="btn_ybcsbc" text="Sure" />
  340. <Control name="label7" text="AnalysisLibrary" />
  341. <Control name="label17" text="TemplateFile" />
  342. <Control name="label5" text="TemplateFolder" />
  343. <Control name="groupBox6" text="TemplateFile" />
  344. <Control name="groupBox7" text="StandardForParticleAnalysis" />
  345. <Control name="groupBox9" text="InclusionOfIndexCalculation" />
  346. <Control name="label22" text="ScaleFactor" />
  347. <Control name="label1" text="DisplayElement" />
  348. <Control name="groupBox2" text="DisplayInformationSettings" />
  349. <Control name="cb_EquivalentCircleDiameter" text="Equivalent" />
  350. <Control name="cb_FerretDiameter" text="Ferret" />
  351. <Control name="cb_DiameterRatio" text="Contrast" />
  352. <Control name="cb_MinDiameter" text="Min" />
  353. <Control name="cb_MaxDiameter" text="Max" />
  354. <Control name="cb_Area" text="Area" />
  355. <Control name="label2" text="DisplayType" />
  356. <Control name="label21" text="ReportTemplateFile" />
  357. <Control name="label6" text="TemplateFolder" />
  358. <Control name="groupBox8" text="TemplateFile" />
  359. <Control name="frmReportSysConfig" text="ProgramManagement" />
  360. <Control name="cb_PERP" text="Orthogonal diameter" />
  361. <Control name="cb_PERI" text="Perimeter" />
  362. <Control name="cb_INSCR" text="Inscribed circle diameter" />
  363. <Control name="cb_MEAN" text="Average diameter of inscribed circle" />
  364. <Control name="cb_ELONG" text="Expansion length" />
  365. <Control name="cb_ASPECT_ELONG" text="Expanded aspect ratio" />
  366. <Control name="cb_Orientation" text="Orientation angle" />
  367. <Control name="cb_FiledCoordinate" text="FiledCoordinate" />
  368. </Controls>
  369. </Form>
  370. <Form>
  371. <Name>frmSTD</Name>
  372. <Controls>
  373. <Control name="groupBox3" text="DesignatedStandardLibrary" />
  374. <Control name="label1" text="Technology" />
  375. <Control name="button2" text="Reclassification" />
  376. <Control name="groupBox2" text="OriginalStandardLibrary" />
  377. <Control name="button1" text="Reclassification" />
  378. <Control name="frmSTD" text="StandardLibrarySettings" />
  379. <Control name="str1" text="General processing" />
  380. <Control name="str2" text="Calcium treatment" />
  381. <Control name="str3" text="Magnesium treatment" />
  382. <Control name="str4" text="Rare earth treatment" />
  383. <Control name="str5" text="Nothing" />
  384. <Control name="str6" text="Whether to reclassify the measurement results according to the original standard library?" />
  385. <Control name="str7" text="Re-classified according to the original standard library, please reload" />
  386. <Control name="str8" text="Reclassification" />
  387. <Control name="str9" text="Re-categorized by specified standard library, please reload" />
  388. <Control name="str10" text="Please add the measurement result file before you can reclassify it." />
  389. </Controls>
  390. </Form>
  391. <Form>
  392. <Name>OTSReport_Condition</Name>
  393. <Controls>
  394. <Control name="button1" text="Sure" />
  395. <Control name="button2" text="Cancel" />
  396. <Control name="lb_sjlx" text="DataType" />
  397. <Control name="lb_ccjsff" text="DimensionCalculationMethod" />
  398. <Control name="lb_ljb" text="ParticleSizeTable" />
  399. <Control name="lb_syxtmb" text="TernaryPhaseDiagramTemplate" />
  400. <Control name="OTSReport_Condition" text="EditingTemplateConditions" />
  401. </Controls>
  402. </Form>
  403. <Form>
  404. <Name>OTSReport_Export</Name>
  405. <Controls>
  406. <Control name="OTSReport_Export" text="Report program output interface" />
  407. <Control name="label3" text="Template" />
  408. <Control name="label4" text="Source" />
  409. <Control name="btn_TempDes" text="Edit" />
  410. <Control name="button3" text="Open File" />
  411. <Control name="label2" text="Schedule" />
  412. <Control name="button7" text="GBExport" />
  413. <Control name="btn_preview" text="Create" />
  414. <Control name="btn_exit" text="Exit" />
  415. <Control name="loading" text="Load: " />
  416. <Control name="measurement_result" text="Loading: Measurement Result Information Table" />
  417. <Control name="measurementResult_fail" text="Measurement result information table loading failed! "/>
  418. <Control name="particle_size" text= "Loading: Particle Size Analysis Table" />
  419. <Control name="particle_size_fail" text="Particle size analysis table loading failed!" />
  420. <Control name="elemental_analysis" text="Loading: Element Analysis Table" />
  421. <Control name="elemental_analysis_fail" text="Element analysis table loading failed!" />
  422. <Control name="inclusion" text="Loading: Inclusion area ratio table" />
  423. <Control name="inclusion_fail" text="Inclusion area ratio table loading failed!" />
  424. <Control name="inclusion_chart" text="Loading: Inclusion area ratio chart" />
  425. <Control name="inclusion_chart_fail" text="Inclusion area loading failed!" />
  426. <Control name="ternary_diagram" text="Loading: Ternary Diagram" />
  427. <Control name="ternary_diagram_fail" text="Loading of ternary diagram failed!" />
  428. <Control name="particle_list" text="Loading: Particle List" />
  429. <Control name="particle_list_fail" text="Particle list loading failed!" />
  430. <Control name="particle_list_chart" text="Loading: Granular Frame Graph List" />
  431. <Control name="particle_list_chart_fail" text="Particle frame chart list loading failed!" />
  432. <Control name="complete" text="-----------------Loading completed!--------------------" />
  433. <Control name="language" text="EN" />
  434. <Control name="library_does_not_match" text="Standard library not compliant!" />
  435. </Controls>
  436. </Form>
  437. <Form>
  438. <Name>OTSReport_Template_INCA</Name>
  439. <Controls>
  440. <Control name="OTSReport_Template_INCA" text="Template settings"/>
  441. <Control name="label39" text="Template settings"/>
  442. <Control name="groupBox9" text="Homepage settings information"/>
  443. <Control name="label3" text="Heading"/>
  444. <Control name="label5" text="Subtitle"/>
  445. <Control name="label1" text="Sample number"/>
  446. <Control name="label4" text="Reference standards"/>
  447. <Control name="groupBox1" text="Footer settings"/>
  448. <Control name="label10" text="Footer Text"/>
  449. <Control name="label8312" text="LOG icon"/>
  450. <Control name="button1217" text="Select Picture"/>
  451. <Control name="groupBox2" text="Remove information"/>
  452. <Control name="label11111" text="ShieldingElements:"/>
  453. <Control name="button5" text="Select"/>
  454. <Control name="label_delete_Class" text="Remove specified substance classification"/>
  455. <Control name="label_zypxss" text="Main sorting display"/>
  456. <Control name="label_cypxss" text="Secondary sorting display"/>
  457. <Control name="groupBox3" text="Particle screening"/>
  458. <Control name="ck_klcc_xsmk" text="particle size"/>
  459. <Control name="ck_ysfx_xsmk" text="Element parsing"/>
  460. <Control name="ck_syxt_xsmk" text="Ternary diagram"/>
  461. <Control name="ck_jzwzb_surface" text="Inclusion proportion"/>
  462. <Control name="ck_kllb_xsmk" text="Particle List"/>
  463. <Control name="ck_kllb_fjzt" text="PParticle frame diagram"/>
  464. <Control name="label14" text="Calculation method"/>
  465. <Control name="label15" text="Particle size table"/>
  466. <Control name="checkBox1" text="Classification chart"/>
  467. <Control name="checkBox2" text="Subdivision chart"/>
  468. <Control name="label112121" text="Display quantity"/>
  469. <Control name="label2" text="Select Settings:"/>
  470. <Control name="groupBox_px" text="Particle display sorting settings"/>
  471. <Control name="ParticleList_1" text="Parameter 1"/>
  472. <Control name="ParticleList_2" text="Parameter 2"/>
  473. <Control name="ParticleList_3" text="Parameter 3"/>
  474. <Control name="groupBox_zt" text="Frame display sorting settings"/>
  475. <Control name="ParticleList_4" text="Parameter 1"/>
  476. <Control name="ParticleList_5" text="Parameter 2"/>
  477. <Control name="label33" text="List of ternary phase diagrams"/>
  478. <Control name="button6" text="Save"/>
  479. <Control name="button1" text="Save As"/>
  480. <Control name="whole" text="All particles"/>
  481. <Control name="select" text="Select particles"/>
  482. <Control name="groupBox4" text="Specific selection"/>
  483. <Control name="label7" text="Library:"/>
  484. <Control name="button3" text="Select"/>
  485. <Control name="button7" text="Exit"/>
  486. <Control name="button4" text="Library:"/>
  487. <Control name="standardlibrary" text="Current standard library:"/>
  488. </Controls>
  489. </Form>
  490. <Form>
  491. <Name>FileNameSelect</Name>
  492. <Controls>
  493. <Control name="FileNameSelect" text="File list" />
  494. <Control name="button1" text="Confirm" />
  495. <Control name="file_name" text="File name" />
  496. <Control name="button2" text="Exit" />
  497. </Controls>
  498. </Form>
  499. <Form>
  500. <Name>NewFileName</Name>
  501. <Controls>
  502. <Control name="NewFileName" text="File name" />
  503. <Control name="button1" text="New" />
  504. <Control name="name_repeat" text="Name is duplicate!" />
  505. </Controls>
  506. </Form>
  507. <Form>
  508. <Name>OTSReport_criterion</Name>
  509. <Controls>
  510. <Control name="OTSReport_criterion" text="Standard selection" />
  511. <Control name="GB_cb_1" text="GB30834 Method 1" />
  512. <Control name="GB_cb_2" text="GB30834 Method 2" />
  513. <Control name="button1" text="Generate" />
  514. </Controls>
  515. </Form>
  516. <Form>
  517. <Name>OTSReport_Template_CleannessA</Name>
  518. <Controls>
  519. <Control name="OTSReport_Template_CleannessA" text="Template settings"/>
  520. <Control name="label39" text="Template settings"/>
  521. <Control name="groupBox9" text="Homepage settings information"/>
  522. <Control name="label3" text="Heading"/>
  523. <Control name="label5" text="subtitle"/>
  524. <Control name="label1" text="sample number"/>
  525. <Control name="label4" text="Reference standards"/>
  526. <Control name="groupBox1" text="Footer settings"/>
  527. <Control name="label10" text="Footer Text"/>
  528. <Control name="label8312" text="LOG icon"/>
  529. <Control name="button1217" text="Select Picture"/>
  530. <Control name="groupBox2" text="Remove information"/>
  531. <Control name="label11111" text="ShieldingElements:"/>
  532. <Control name="button5" text="select"/>
  533. <Control name="label_delete_Class" text="Remove specified substance classification"/>
  534. <Control name="label_zypxss" text="Main sorting display"/>
  535. <Control name="label_cypxss" text="Secondary sorting display"/>
  536. <Control name="groupBox3" text="Particle screening"/>
  537. <Control name="ck_klcc_xsmk" text="particle size"/>
  538. <Control name="ck_ysfx_xsmk" text="elemental analysis"/>
  539. <Control name="ck_kllb_xsmk" text="Particle List"/>
  540. <Control name="ck_kllb_fjzt" text="Particle attached frame diagram"/>
  541. <Control name="ck_klcc_xsddt" text="Stacking diagram"/>
  542. <Control name="checkBox1" text="classification chart"/>
  543. <Control name="checkBox2" text="Subdivision chart"/>
  544. <Control name="label112121" text="Display quantity"/>
  545. <Control name="label14" text="Calculation method"/>
  546. <Control name="label15" text="Grain size information"/>
  547. <Control name="label2" text="Select Settings:"/>
  548. <Control name="groupBox_px" text="Particle display sorting settings"/>
  549. <Control name="ParticleList_1" text="Parameter 1"/>
  550. <Control name="ParticleList_2" text="Parameter 2"/>
  551. <Control name="ParticleList_3" text="Parameter 3"/>
  552. <Control name="groupBox_zt" text="Frame display sorting settings"/>
  553. <Control name="ParticleList_4" text="Parameter 1"/>
  554. <Control name="ParticleList_5" text="Parameter 2"/>
  555. <Control name="button6" text="save"/>
  556. <Control name="button1" text="Save As"/>
  557. <Control name="whole" text="All particles"/>
  558. <Control name="select" text="Select particles"/>
  559. <Control name="no_database" text="Database not found!"/>
  560. <Control name="image_opened" text="The image has been opened!"/>
  561. <Control name="groupBox4" text="Specific selection"/>
  562. <Control name="label7" text="Library:"/>
  563. <Control name="button3" text="Select"/>
  564. <Control name="button4" text="Select"/>
  565. <Control name="button7" text="Exit"/>
  566. <Control name="standardlibrary" text="Current standard library:"/>
  567. </Controls>
  568. </Form>
  569. <Form>
  570. <Name>frmCharts</Name>
  571. <Controls>
  572. <Control name="cbCustomTemplate" text="CustomTemplate" />
  573. <Control name="btnApplyTemplate" text="ApplicationTemplate" />
  574. <Control name="label3" text="Right" />
  575. <Control name="label2" text="Left" />
  576. <Control name="label1" text="Vertex " />
  577. <Control name="str1" text="Conventional parameters" />
  578. <Control name="str2" text="Particle Composition Map" />
  579. <Control name="str3" text="Please complete the information in the template!" />
  580. <Control name="str4" text="Are the same options generated in the template?" />
  581. </Controls>
  582. </Form>
  583. <Form>
  584. <Name>Frm_UserProgress</Name>
  585. <Controls>
  586. <Control name="str1" text="Current progress" />
  587. </Controls>
  588. </Form>
  589. <Form>
  590. <Name>Control_XRayTable</Name>
  591. <Controls>
  592. <Control name="str1" text="Count:" />
  593. <Control name="str2" text="Material:" />
  594. </Controls>
  595. </Form>
  596. <Form>
  597. <Name>OTSIncAReportFun</Name>
  598. <Controls>
  599. <Control name="str1" text="Distribution map ready to start connecting SEM" />
  600. <Control name="str2" text="Post-connection status invoked" />
  601. <Control name="str3" text="Obtain the ID of the electron microscope" />
  602. <Control name="str4" text="The electron microscope is connected and ready to disconnect." />
  603. <Control name="str5" text="Electron microscopy is a connected state, after completion of disconnection state" />
  604. <Control name="str6" text="Distribution map ready to start connecting SEM" />
  605. <Control name="str7" text="Post-connection status invoked" />
  606. <Control name="str8" text="Obtain the ID of the electron microscope" />
  607. <Control name="str9" text="The electron microscope is connected and ready to disconnect." />
  608. <Control name="str10" text="Electron microscopy is a connected state, after completion of disconnection state" />
  609. <Control name="str11" text="Distribution map ready to start moving EM to" />
  610. <Control name="str12" text="Obtain the original position of the electron microscope as X" />
  611. <Control name="str13" text="Error in obtaining the position of the electron microscope" />
  612. <Control name="str14" text="Move the electron microscope to the designated position" />
  613. <Control name="str15" text="Error in Moving Electron Microscope" />
  614. <Control name="str16" text="Distribution map ready to start moving EM to" />
  615. <Control name="str17" text="Obtain the original position of the electron microscope as X" />
  616. <Control name="str18" text="Error in obtaining the position of the electron microscope" />
  617. <Control name="str19" text="Move the electron microscope to the designated position" />
  618. <Control name="str20" text="Error in Moving Electron Microscope" />
  619. <Control name="str21" text="Prepare to close the electron microscope connection" />
  620. <Control name="str22" text="Prepare to close the electron microscope connection" />
  621. <Control name="str23" text="Ready to release DLL" />
  622. <Control name="str24" text="Prepare to close the electron microscope connection" />
  623. <Control name="str25" text="Ready to release DLL" />
  624. <Control name="str26" text="Choice" />
  625. <Control name="str27" text="Start loading data from the bottom...." />
  626. <Control name="str28" text="The number of bottom returned view data is 0...." />
  627. <Control name="str29" text="Start building image horizons...." />
  628. <Control name="str30" text="Calculating scale...." />
  629. <Control name="str31" text="Constructing whole map data...." />
  630. <Control name="str32" text="Completed" />
  631. <Control name="str33" text="Horizon Data Formation,Total" />
  632. <Control name="str34" text="field of vision..." />
  633. <Control name="str35" text="Conversion resolution..." />
  634. <Control name="str36" text="Complete other tasks..." />
  635. <Control name="str37" text="Minute " />
  636. <Control name="str38" text="second Total(" />
  637. <Control name="str39" text=")Millisecond" />
  638. <Control name="str40" text="The CGridDataClr of the incoming component is empty when calculating the condition of the distribution map. Please check!" />
  639. <Control name="str41" text="Delete" />
  640. <Control name="str42" text="No Display" />
  641. <Control name="str43" text="When calculating the condition of the distribution map, the empty GetGridColumnList is listed in the CGridDataClr of the incoming component. Please check!" />
  642. <Control name="str44" text="When calculating the condition of the distribution map, the behavior in the CGridDataClr of the incoming component is empty GetRowList, please check!" />
  643. <Control name="str45" text="Display" />
  644. <Control name="str46" text="No Display" />
  645. <Control name="str47" text="Choice" />
  646. <Control name="str48" text="Start loading data from the bottom...." />
  647. <Control name="str49" text="Start building image resources...." />
  648. <Control name="str50" text="Calculating scale...." />
  649. <Control name="str51" text="Constructing whole map data...." />
  650. <Control name="str52" text="Completed" />
  651. <Control name="str53" text="data,Total" />
  652. <Control name="str54" text="data..." />
  653. <Control name="str55" text="The CGridDataClr object transferred from the framework to the component is empty, please check!" />
  654. <Control name="str56" text="No Display" />
  655. <Control name="str57" text="Pass the GetGridColumnList of the CGridDataClr object from the framework to the component. Check!" />
  656. <Control name="str58" text="GetRowList, which transfers CGridDataClr objects from the framework to components, is empty. Check!" />
  657. <Control name="str59" text="Display" />
  658. <Control name="partcletype0" text="SMALL" />
  659. <Control name="partcletype1" text="OVERSIZE" />
  660. <Control name="partcletype2" text="AVE_GRAY_NOT_INRANRE" />
  661. <Control name="partcletype4" text="LOW_COUNT" />
  662. <Control name="partcletype6" text="NO_ANALYSIS_X_RAY" />
  663. <Control name="partcletype7" text="NOT_IDENTIFIED_SIC" />
  664. <Control name="partcletype8" text="NOT_IDENTIFIED_FEO" />
  665. <Control name="partcletype9" text="NOT_IDENTIFIED" />
  666. <Control name="partcletype10" text="Analytical Particles" />
  667. </Controls>
  668. </Form>
  669. <Form>
  670. <Name>ChineseStandardABCDDS</Name>
  671. <Controls>
  672. <Control name="label1" text="A" />
  673. <Control name="label2" text="B" />
  674. <Control name="label3" text="C" />
  675. <Control name="label4" text="D" />
  676. <Control name="label5" text="DS" />
  677. <Control name="ToolStripMenuItem1" text="Copy the entire table" />
  678. <Control name="ToolStripMenuItem2" text="Copy the selected area" />
  679. <Control name="ToolStripMenuItem3" text="Restore to the initial state" />
  680. <Control name="toolStripMenuItem4" text="Copy the entire table" />
  681. <Control name="toolStripMenuItem5" text="Copy the selected area" />
  682. <Control name="toolStripMenuItem6" text="Restore to the initial state" />
  683. <Control name="toolStripMenuItem7" text="Copy the entire table" />
  684. <Control name="toolStripMenuItem8" text="Copy the selected area" />
  685. <Control name="toolStripMenuItem9" text="Restore to the initial state" />
  686. <Control name="toolStripMenuItem10" text="Copy the entire table" />
  687. <Control name="toolStripMenuItem11" text="Copy the selected area" />
  688. <Control name="toolStripMenuItem12" text="Restore to the initial state" />
  689. <Control name="toolStripMenuItem13" text="Copy the entire table" />
  690. <Control name="toolStripMenuItem14" text="Copy the selected area" />
  691. <Control name="toolStripMenuItem15" text="Restore to the initial state" />
  692. </Controls>
  693. </Form>
  694. <Form>
  695. <Name>NationalStandardMethodTwo</Name>
  696. <Controls>
  697. <Control name="label1" text="A" />
  698. <Control name="label2" text="B" />
  699. <Control name="label3" text="C" />
  700. <Control name="label4" text="D" />
  701. <Control name="label5" text="Sulfides" />
  702. <Control name="label6" text="DS" />
  703. </Controls>
  704. </Form>
  705. <Form>
  706. <Name>OTSIncAReportGridsFun</Name>
  707. <Controls>
  708. <Control name="str1" text="The CGridDataClr object passed into the decomposed table data is empty!" />
  709. <Control name="str2" text="Load the particle list and start loading data from the bottom..." />
  710. <Control name="str3" text="Name" />
  711. <Control name="str4" text="Image" />
  712. <Control name="str5" text="Area(um²)" />
  713. <Control name="str6" text="MaxDiameter(um)" />
  714. <Control name="str7" text="MinDiameter(um)" />
  715. <Control name="str8" text="RatioOfDiameter" />
  716. <Control name="str9" text="IdentifyCircle" />
  717. <Control name="str10" text="FeretDiameter" />
  718. <Control name="str11" text="The CGridDataClr object passed into the decomposed table data is empty!" />
  719. <Control name="str12" text="Load the granular list and start creating table structure columns..." />
  720. <Control name="str13" text="Load the granular list and start creating table structure rows..." />
  721. <Control name="str14" text="Load the particle list and start generating table data..." />
  722. <Control name="str15" text="Load the particle list, getting it" />
  723. <Control name="str16" text="Name" />
  724. <Control name="str17" text="Image" />
  725. <Control name="str18" text="Value" />
  726. <Control name="str19" text="The CGridDataClr object passed into the decomposed table data is empty!" />
  727. <Control name="str20" text="Distribution map ready to start connecting SEM" />
  728. <Control name="str21" text="Post-connection status invoked" />
  729. <Control name="str22" text="Obtain the ID of the electron microscope" />
  730. <Control name="str23" text="The electron microscope is connected and ready to disconnect." />
  731. <Control name="str24" text="Electron microscopy is a connected state, after completion of disconnection state" />
  732. <Control name="str25" text="Distribution map ready to start moving EM to" />
  733. <Control name="str26" text="Obtain the original position of the electron microscope as X" />
  734. <Control name="str27" text="Error in obtaining the position of the electron microscope" />
  735. <Control name="str28" text="Move the electron microscope to the designated position" />
  736. <Control name="str29" text="Error in Moving Electron Microscope" />
  737. <Control name="str30" text="Prepare to close the electron microscope connection" />
  738. <Control name="str31" text="Ready to release DLL" />
  739. <Control name="str32" text="PERP" />
  740. <Control name="str33" text="PERI" />
  741. <Control name="str34" text="INSCR" />
  742. <Control name="str35" text="MEAN" />
  743. <Control name="str36" text="ELONG" />
  744. <Control name="str37" text="ASPECT_ELONG" />
  745. <Control name="str38" text="ASPECT_MAX" />
  746. <Control name="str39" text="Orientation" />
  747. </Controls>
  748. </Form>
  749. <Form>
  750. <Name>ElementCompositionAvgGrid</Name>
  751. <Controls>
  752. <Control name="ToolStripMenuItem1" text="Copy the entire table" />
  753. <Control name="ToolStripMenuItem2" text="Replication Selection Area" />
  754. <Control name="ToolStripMenuItem3" text="Duplicate image" />
  755. <Control name="str1" text="No" />
  756. <Control name="str2" text="Particle Type" />
  757. <Control name="str3" text="Area(μm²)" />
  758. <Control name="str4" text="Name" />
  759. <Control name="str5" text="Small(μm²)" />
  760. <Control name="str6" text="Total " />
  761. <Control name="partcletype0" text="SMALL" />
  762. <Control name="partcletype1" text="OVERSIZE" />
  763. <Control name="partcletype2" text="AVE_GRAY_NOT_INRANRE" />
  764. <Control name="partcletype4" text="LOW_COUNT" />
  765. <Control name="partcletype6" text="NO_ANALYSIS_X_RAY" />
  766. <Control name="partcletype7" text="NOT_IDENTIFIED_SIC" />
  767. <Control name="partcletype8" text="NOT_IDENTIFIED_FEO" />
  768. <Control name="partcletype9" text="NOT_IDENTIFIED" />
  769. </Controls>
  770. </Form>
  771. <Form>
  772. <Name>CompositionDistributionGrid</Name>
  773. <Controls>
  774. <Control name="ToolStripMenuItem1" text="Copy the entire table" />
  775. <Control name="ToolStripMenuItem2" text="Replication Selection Area" />
  776. <Control name="ToolStripMenuItem3" text="Duplicate image" />
  777. <Control name="str1" text="Number" />
  778. <Control name="str2" text="Average(um)Level" />
  779. <Control name="str3" text="AverageArea(um²)" />
  780. <Control name="str4" text="Diameter(um)" />
  781. <Control name="str5" text="Max(um)Level" />
  782. <Control name="str6" text="MaxArea(um²)" />
  783. <Control name="str7" text="MaxDiameter(um)" />
  784. <Control name="str8" text="Particle Name" />
  785. <Control name="str9" text="Color" />
  786. <Control name="str10" text="TotalParticles" />
  787. <Control name="str11" text="Small" />
  788. <Control name="str13" text="AreaRadio%" />
  789. <Control name="partcletype0" text="SMALL" />
  790. <Control name="partcletype1" text="OVERSIZE" />
  791. <Control name="partcletype2" text="AVE_GRAY_NOT_INRANRE" />
  792. <Control name="partcletype4" text="LOW_COUNT" />
  793. <Control name="partcletype6" text="NO_ANALYSIS_X_RAY" />
  794. <Control name="partcletype7" text="NOT_IDENTIFIED_SIC" />
  795. <Control name="partcletype8" text="NOT_IDENTIFIED_FEO" />
  796. <Control name="partcletype9" text="NOT_IDENTIFIED" />
  797. <Control name="str20" text="spinel" />
  798. <Control name="str21" text="oxide" />
  799. <Control name="str22" text="SulfurOxide" />
  800. <Control name="str23" text="nitrides" />
  801. <Control name="str24" text="sulfide" />
  802. </Controls>
  803. </Form>
  804. <Form>
  805. <Name>ParticlesSizeGrid</Name>
  806. <Controls>
  807. <Control name="ToolStripMenuItem1" text="Copy the entire table" />
  808. <Control name="ToolStripMenuItem2" text="Replication Selection Area" />
  809. <Control name="ToolStripMenuItem3" text="Duplicate image" />
  810. <Control name="str1" text="No" />
  811. <Control name="str8" text="Name" />
  812. <Control name="str9" text="Color" />
  813. <Control name="str10" text="Largest" />
  814. <Control name="str11" text="Total" />
  815. <Control name="partcletype0" text="SMALL" />
  816. <Control name="partcletype1" text="OVERSIZE" />
  817. <Control name="partcletype2" text="AVE_GRAY_NOT_INRANRE" />
  818. <Control name="partcletype4" text="LOW_COUNT" />
  819. <Control name="partcletype6" text="NO_ANALYSIS_X_RAY" />
  820. <Control name="partcletype7" text="NOT_IDENTIFIED_SIC" />
  821. <Control name="partcletype8" text="NOT_IDENTIFIED_FEO" />
  822. <Control name="partcletype9" text="NOT_IDENTIFIED" />
  823. </Controls>
  824. </Form>
  825. <Form>
  826. <Name>ResultGrid</Name>
  827. <Controls>
  828. <Control name="ToolStripMenuItem1" text="Copy the entire table" />
  829. <Control name="ToolStripMenuItem2" text="Replication Selection Area" />
  830. <Control name="ToolStripMenuItem3" text="Duplicate image" />
  831. <Control name="str1" text="Title" />
  832. <Control name="str8" text="information" />
  833. <Control name="col1" text="Measurement result" />
  834. <Control name="col2" text="Start of operation" />
  835. <Control name="col3" text="End of operation" />
  836. <Control name="col4" text="Running time" />
  837. <Control name="col5" text="Total field of view detected" />
  838. <Control name="col6" text="Analysis standard library" />
  839. <Control name="col7" text="Detected features" />
  840. <Control name="col8" text="Field of view area(sq.μ m)" />
  841. <Control name="col9" text="Total area of analyzed features(sq.μm)" />
  842. <Control name="col10" text="Detected characteristic area ratio " />
  843. <Control name="col11" text="Inclusion/scale" />
  844. <Control name="col12" text="Magnification" />
  845. </Controls>
  846. </Form>
  847. <Form>
  848. <Name>frmReportConditionChoose</Name>
  849. <Controls>
  850. <Control name="sscaptionname1" text="Measurement Result" />
  851. <Control name="sscaptionname2" text="Survey Chart Type" />
  852. <Control name="sscaptionname3" text="Chart Display Mode" />
  853. <Control name="sscaptionname4" text="Particle Type" />
  854. <Control name="sscaptionname5" text="Grain Size" />
  855. <Control name="sscaptionname6" text="Smallest Particle" />
  856. <Control name="sscaptionname7" text="Maximum Particle" />
  857. <Control name="sscaptionname8" text="Computing Method" />
  858. <Control name="sscaptionname9" text="Data Type" />
  859. <Control name="sscaptionname10" text="Data Table Type" />
  860. <Control name="sscaptionname11" text="Data Graph Type" />
  861. <Control name="sscaptionname12" text="Ternary Phase Ciagram" />
  862. <Control name="sscaptionname13" text="Classification" />
  863. <Control name="sscaptionname14" text="Distribution Map" />
  864. <Control name="sscaptionname15" text="Permutation Diagram" />
  865. <Control name="sscaptionname16" text="ALL" />
  866. <Control name="sscaptionname17" text="Analytical Particles" />
  867. <Control name="sscaptionname18" text="Custom" />
  868. <Control name="sscaptionname19" text="All Particle Types" />
  869. <Control name="sscaptionname20" text="Analysis Particle Type" />
  870. <Control name="sscaptionname21" text="Particle Size Type" />
  871. <Control name="sscaptionname22" text="Measured Data" />
  872. <Control name="sscaptionname23" text="All Particles" />
  873. <Control name="sscaptionname25" text="Results Overview" />
  874. <Control name="sscaptionname26" text="Sample Information" />
  875. <Control name="sscaptionname27" text="Particle Composition" />
  876. <Control name="sscaptionname29" text="Size Distribution" />
  877. <Control name="sscaptionname30" text="Average Composition" />
  878. <Control name="m_reportname1" text="Classification of Common Particles" />
  879. <Control name="m_str_axisy1" text="ParticleNumber" />
  880. <Control name="str_operatonmodule1" text="Classification Chart of Common Particles" />
  881. <Control name="m_reportname2" text="ParticleComposition" />
  882. <Control name="m_str_axisy2" text="ParticleNumber" />
  883. <Control name="str_operatonmodule2" text="ParticleCompositionMap" />
  884. <Control name="m_reportname4" text="Particle Distribution" />
  885. <Control name="m_str_axisy4" text="ParticleNumber" />
  886. <Control name="str_operatonmodule4" text="Particle Size Distribution Map" />
  887. <Control name="str_operatonmodule5" text="Three phase diagram" />
  888. <Control name="str1" text="Parameter" />
  889. <Control name="str2" text="ConventionalParameters" />
  890. <Control name="BSEOriginal" text="BSE original"/>
  891. <Control name="ClassifiedDisplay" text="Classified display"/>
  892. <Control name="OriginalSplicing" text="Original splicing"/>
  893. <Control name="OriginalDistribution" text="Original distribution"/>
  894. <Control name="ParticleSizeTable" text="Particle size table"/>
  895. <Control name="ChineseStandard1" text="GB30834(10561)Function1"/>
  896. <Control name="ChineseStandard2" text="GB30834Function2"/>
  897. <Control name="AmericanStandard" text="American Standard"/>
  898. <Control name="GermanStandard" text="German standard"/>
  899. <Control name="CommonClassification" text="Common classification"/>
  900. <Control name="ParticlesAnalyzed" text="ParticlesAnalyzed" />
  901. <Control name="SelectParticles" text="SelectParticles" />
  902. <Control name="otherParticles" text="otherParticles" />
  903. <Control name="MergeParticles" text="MergeParticles" />
  904. <Control name="DataSourceType" text="DataSourceType" />
  905. <Control name="InclusionAreaRatio" text="ParticleAreaRatio" />
  906. <Control name="IncaArea scale" text="ParticleAreaRatio" />
  907. </Controls>
  908. </Form>
  909. <Form>
  910. <Name>Control_DrawDistrbutionImageAndBSE</Name>
  911. <Controls>
  912. <Control name="ToolStripMenuItem_selected" text="Select Particles" />
  913. <Control name="ToolStripMenuItem_delete" text="Delete" />
  914. <Control name="另存选择颗粒ToolStripMenuItem" text="SaveAs" />
  915. <Control name="ToolStripMenuItem_movesempoint" text="Move SEM to the Particle Horizon Position" />
  916. <Control name="toolStripMenuItem_copyimage" text="Export rendering" />
  917. <Control name="toolStripMenuItem_DeleteParticles" text="DeleteParticles"/>
  918. <Control name="str1" text="Start loading distribution map information" />
  919. <Control name="str2" text="Loading completed" />
  920. <Control name="str3" text="SEM location:" />
  921. <Control name="str4" text="Gray scale#:" />
  922. <Control name="str5" text="UnDo" />
  923. <Control name="str6" text="Select Particles" />
  924. <Control name="str7" text="Horizon location:" />
  925. <Control name="str8" text="Copy Image" />
  926. <Control name="str9" text="Move SEM to current position" />
  927. <Control name="str10" text="Move SEM to particle view position" />
  928. <Control name="str11" text="Confirm split?" />
  929. <Control name="str12" text="Too many divisions!" />
  930. <Control name="str13" text="Split failed!" />
  931. <Control name="str14" text="No intersection!" />
  932. <Control name="MouseMove1" text="Particle SEM location:" />
  933. <Control name="MouseMove2" text="Grayscale#" />
  934. <Control name="BSEOriginal" text="BSE original"/>
  935. <Control name="ClassifiedDisplay" text="Classified display"/>
  936. <Control name="OriginalSplicing" text="Original splicing"/>
  937. <Control name="OriginalDistribution" text="Original distribution"/>
  938. <Control name="ExportoriginalspliceToolStripMenuItem" text="Duplicate Rendering"/>
  939. <Control name="ToolStripMenuItem" text="Partitioning particles"/>
  940. <Control name="ImportSTDDb" text="Import Standard Library"/>
  941. <Control name="ToolStripMenuItem_ParticleSplicing" text="Derived grain pattern"/>
  942. <Control name="显示国标信息ToolStripMenuItem" text="Display national standard"/>
  943. <Control name="toolStripMenuItem2" text="Method one"/>
  944. <Control name="toolStripMenuItem1" text="Displays the national frame"/>
  945. <Control name="查询DS类颗粒ToolStripMenuItem" text="Query DS class"/>
  946. <Control name="显示当前帧国标分类ToolStripMenuItem" text="Highlight frame class"/>
  947. <Control name="全部ToolStripMenuItem" text="All"/>
  948. <Control name="toolStripMenuItem3" text="Method two"/>
  949. <Control name="toolStripMenuItem4" text="Display standard"/>
  950. <Control name="toolStripMenuItem10" text="Query DS class"/>
  951. <Control name="显示所有帧ToolStripMenuItem" text="Show all frames"/>
  952. <Control name="清除ToolStripMenuItem" text="Clear away"/>
  953. <Control name="toolStripMenuItem_backgroundcombin" text="Derived artwort"/>
  954. <Control name="toolStripMenuItem_backgroundcombinClass" text="Export artwort classification"/>
  955. <Control name="国标图导出ToolStripMenuItem" text="Export of national standard"/>
  956. <Control name="方法一ToolStripMenuItem" text="Method one"/>
  957. <Control name="方法二ToolStripMenuItem" text="Method two"/>
  958. <Control name="toolStripMenuItem_Segmentation" text="Segmented particle"/>
  959. <Control name="查找相似颗粒ToolStripMenuItem" text="Query similar particles"/>
  960. </Controls>
  961. </Form>
  962. <Form>
  963. <Name>Control_DrawDistrbutionSortImage</Name>
  964. <Controls>
  965. <Control name="ToolStripMenuItem_selected" text="Select Particles" />
  966. <Control name="ToolStripMenuItem_delete" text="Delete" />
  967. <Control name="另存选择颗粒ToolStripMenuItem" text="SaveAs" />
  968. <Control name="ToolStripMenuItem_movesempoint" text="Move SEM to the Particle Horizon Position" />
  969. <Control name="toolStripMenuItem_copyimage" text="Duplicate image" />
  970. <Control name="str1" text="Start loading sort graph information" />
  971. <Control name="str2" text="Loading completed" />
  972. <Control name="str3" text="SEM location:" />
  973. <Control name="str4" text="Gray scale#:" />
  974. <Control name="str5" text="UnDo" />
  975. <Control name="str6" text="Select Particles" />
  976. <Control name="str7" text="Horizon location:" />
  977. <Control name="str8" text="Gray scale#" />
  978. <Control name="str9" text="Move SEM to current position" />
  979. <Control name="str10" text="Move SEM to particle view position" />
  980. <Control name="partcletype9" text="NOT_IDENTIFIED" />
  981. <Control name="partcletype10" text="Analytical Particles" />
  982. </Controls>
  983. </Form>
  984. <!-- OTSIncAMeasureApp -->
  985. <Form>
  986. <Name>OTSIncAMeasureAppForm</Name>
  987. <Controls>
  988. <Control name="rbOpen" text="Open" />
  989. <Control name="rbNewDocument" text="New" />
  990. <Control name="rbOpenFile" text="Open" />
  991. <Control name="rbSaveFile" text="Save" />
  992. <Control name="rvSaveAsFile" text="SaveAs" />
  993. <Control name="rbSTDEditor" text="STDManage" />
  994. <Control name="rbExitApp" text="Exit" />
  995. <Control name="rbSelectDlg" text="ProgramManagement" />
  996. <Control name="rbTabHome" text="BasicFunction" />
  997. <Control name="rbPanelFile" text="ProjectDocuments" />
  998. <Control name="rbPanelSample" text="Sample operation and measurement area selection" />
  999. <Control name="rbSemFunction" text="SemControl" />
  1000. <Control name="rbAddSample" text="Add" />
  1001. <Control name="rbDeleteSample" text="Delete" />
  1002. <Control name="ribReset" text="Reset" />
  1003. <Control name="rbMeasureCircle" text="Circle" />
  1004. <Control name="rbMeasureRectangle" text="Rectangle" />
  1005. <Control name="ribCircle" text="Circle" />
  1006. <Control name="ribRectangle" text="Rectangle" />
  1007. <Control name="ribPolygon" text="Polygon" />
  1008. <Control name="rbPanelFunction" text="MeasurementControl" />
  1009. <Control name="rbStart" text="Start" />
  1010. <Control name="rbPause" text="Pause" />
  1011. <Control name="rbStop" text="Stop" />
  1012. <Control name="rbCheckParam" text="CheckParam" />
  1013. <Control name="rbPReport" text="Report" />
  1014. <Control name="rbReport" text="OpenReport" />
  1015. <Control name="rbTabView" text="TabView" />
  1016. <Control name="ribView" text="View" />
  1017. <Control name="rbRuler" text="Ruler" />
  1018. <Control name="rbSmaplePhoto" text="SmaplePhoto" />
  1019. <Control name="rbSmapleName" text="SmapleName" />
  1020. <Control name="rbRecover" text="Recover" />
  1021. <Control name="TSGrayVal" text="GrayVal" />
  1022. <Control name="STSemCoordinate" text="SemCoordinate" />
  1023. <Control name="ribbonButton3" text="Reset" />
  1024. <Control name="ribbonButton1" text="Open" />
  1025. <Control name="ribbonOrbRecentItem1" text="Special Gray Grain Recognition Settings " />
  1026. <Control name="m_SamplespaceWindowName" text="SampleStage" />
  1027. <Control name="m_MeasureStauWindowName" text="MeasurementState" />
  1028. <Control name="m_MeasureRetWindowName" text="MeasurementResult" />
  1029. <Control name="m_NoWindowName" text="UnknownWorkingWindow" />
  1030. <Control name="rbSTDEdit" text="Edit standard library" />
  1031. <Control name="rbReClassify" text="Reclassification" />
  1032. <Control name="rbSysMgrApp" text="SystemSetting" />
  1033. <Control name="rbConnectHardware" text="ConnectSem" />
  1034. <Control name="rbDisconnectHardware" text="DisConnectSem" />
  1035. <Control name="rbAutoBeamOff" text="AutoBeamOff" />
  1036. <Control name="rbinterrupt" text="Interrupt" />
  1037. <Control name="language" text="EN" />
  1038. <Control name="message1" text="No OTSIncA valid pass!" />
  1039. <Control name="message2" text="Is the current file modified or saved?" />
  1040. <Control name="message3" text="Error log" />
  1041. <Control name="message4" text="Whether to save modification information" />
  1042. <Control name="message5" text="Confirm deletion " />
  1043. <Control name="message6" text=" ?" />
  1044. <Control name="message7" text="The measurement condition is normal!" />
  1045. </Controls>
  1046. </Form>
  1047. <Form>
  1048. <Name>DlgStageMgr</Name>
  1049. <Controls>
  1050. <Control name="button_edit" text="Edit" />
  1051. <Control name="button_New" text="New" />
  1052. </Controls>
  1053. </Form>
  1054. <Form>
  1055. <Name>MeasureStopMode</Name>
  1056. <Controls>
  1057. <Control name="groupBox1" text="MeasureStopMode" />
  1058. <Control name="cB_CoverMode" text="1.CoverMode" />
  1059. <Control name="cB_ParticleMode" text="2.ParticleMode" />
  1060. <Control name="cB_FieldMode" text="3.FieldMode" />
  1061. <Control name="cB_TimeMode" text="4.TimeMode" />
  1062. <Control name="label1" text="s" />
  1063. <Control name="cB_AreaMode" text="5.AreaMode" />
  1064. <Control name="label2" text="mm²" />
  1065. </Controls>
  1066. </Form>
  1067. <Form>
  1068. <Name>ProgMgrInfoForm</Name>
  1069. <Controls>
  1070. <Control name="groupBox1" text="SampleStage" />
  1071. <Control name="label41" text="DefaultSample" />
  1072. <Control name="label1" text="Template" />
  1073. <Control name="groupBox2" text="SEMSampleStageInformation" />
  1074. <Control name="label36" text="MinMagnification" />
  1075. <Control name="label6" text="YStroke" />
  1076. <Control name="label5" text="YAxisDirection" />
  1077. <Control name="label4" text="XStroke" />
  1078. <Control name="label3" text="XAxisDirection" />
  1079. <Control name="label2" text="Screen100times" />
  1080. <Control name="groupBox3" text="ImageScanningParameters" />
  1081. <Control name="label13" text="Dimension" />
  1082. <Control name="label12" text="Accuracy" />
  1083. <Control name="label11" text="Drawing" />
  1084. <Control name="label8" text="Termination time (seconds)" />
  1085. <Control name="label7" text="Termination mode" />
  1086. <Control name="groupBox4" text="ConventionalMeasurementParameters" />
  1087. <Control name="label42" text="Refining" />
  1088. <Control name="label19" text="UserLib" />
  1089. <Control name="label15" text="Switch" />
  1090. <Control name="label14" text="Name" />
  1091. <Control name="groupBox5" text="ImageProcessingParameters" />
  1092. <Control name="label22" text="ParticleRange" />
  1093. <Control name="label21" text="BackgRange" />
  1094. <Control name="label25" text="Min" />
  1095. <Control name="label28" text="Max" />
  1096. <Control name="label27" text="Max" />
  1097. <Control name="label26" text="Max" />
  1098. <Control name="label20" text="SizeRange" />
  1099. <Control name="lbShape" text="DefualtMeasureShape" />
  1100. <Control name="lbArea" text="DefualtMeasureArea" />
  1101. <Control name="groupBox6" text="Parameter" />
  1102. <Control name="label17" text="Time" />
  1103. <Control name="label30" text="MinimumCount" />
  1104. <Control name="label29" text="Accuracy" />
  1105. <Control name="label32" text="LargeParticleX-rayTime" />
  1106. <Control name="label45" text="SmallParticleX-rayTime" />
  1107. <Control name="label33" text="CountingExpectations" />
  1108. <Control name="label31" text="ScanningMode(Large particles)" />
  1109. <Control name="label47" text="XrayLimit" />
  1110. <Control name="label49" text="Coefficient of corrosion expansion" />
  1111. <Control name="label37" text="Analysis threshold" />
  1112. <Control name="label52" text="Enable particle filtering(Bruker)" />
  1113. <Control name="groupBox7" text="ModeSelection" />
  1114. <Control name="lbModelSel" text="ModeSelection" />
  1115. <Control name="lbLaboratoty" text="Laboratoty" />
  1116. <Control name="lbAnalysisReferenceNumber" text="AnalysisReferenceNumber" />
  1117. <Control name="lbCustomerName" text="CustomerName" />
  1118. <Control name="lbOperatorName" text="OperatorName" />
  1119. <Control name="lbSampleDescription" text="SampleDescription" />
  1120. <Control name="lbComment" text="Comment" />
  1121. <Control name="label_AUTOBGREMOVE_TYPE" text="AUTOBGREMOVE_TYPE" />
  1122. <Control name="label_Auto" text="Auto" />
  1123. <Control name="label_FrameEndMode" text="FrameEndMode" />
  1124. <Control name="groupBox9" text="Standard library selection" />
  1125. <Control name="label43" text="Background processing mode:" />
  1126. <Control name="label44" text="Using X-ray" />
  1127. <Control name="label50" text="ImageOverlap" />
  1128. <Control name="btnok" text="Sure" />
  1129. <Control name="btncancel" text="Cancel" />
  1130. <Control name="button_SpPart" text="Special Gray Grain Recognition Settings" />
  1131. <Control name="checkBox_Run" text="Enable" />
  1132. <Control name="ProgMgrInfoForm" text="ProgramManagement" />
  1133. <Control name="message1" text="Sample Stage information cannot be empty" />
  1134. <Control name="message2" text="Screen size cannot be empty at 100 times" />
  1135. <Control name="message3" text="The X-axis direction cannot be empty" />
  1136. <Control name="message4" text="X-axis travel cannot be empty" />
  1137. <Control name="message5" text="Y-axis travel cannot be empty" />
  1138. <Control name="message6" text="Y-Axis Travel Start Can't Be Empty" />
  1139. <Control name="message7" text="StopMode cannot be empty" />
  1140. <Control name="message8" text="The number of terminated frames cannot be null" />
  1141. <Control name="message9" text="The number of terminated inclusions should not be empty" />
  1142. <Control name="message10" text="Graphics cannot be empty" />
  1143. <Control name="message11" text="Scanning Graph Accuracy Can't Be Empty" />
  1144. <Control name="message12" text="Scanning map size cannot be empty" />
  1145. <Control name="message13" text="Minimum magnification cannot be empty" />
  1146. <Control name="message14" text="The minimum of particle area can not be empty" />
  1147. <Control name="message15" text="The maximum area of particles can not be empty" />
  1148. <Control name="message16" text="The small value of background gray scale can not be empty" />
  1149. <Control name="message17" text="The large range of background gray can not be empty" />
  1150. <Control name="message18" text="The minimum gray-scale range of particles can not be empty" />
  1151. <Control name="message19" text="The maximum gray-scale range of particles can not be empty" />
  1152. <Control name="message20" text="X-ray scanning mode cannot be empty" />
  1153. <Control name="message21" text="Analysis of X-ray accuracy cannot be empty" />
  1154. <Control name="message22" text="Analysis of X-ray Counting Expectations Can't Be Empty" />
  1155. <Control name="message23" text="Please enter the correct numerical format" />
  1156. <Control name="message24" text="Please enter the correct numerical format" />
  1157. <Control name="message25" text="Please enter the correct numerical format" />
  1158. <Control name="message26" text="Please enter the correct numerical format" />
  1159. <Control name="message27" text="Please enter the correct numerical format" />
  1160. <Control name="message28" text="Please enter the correct numerical format" />
  1161. <Control name="message29" text="Please enter the correct numerical format" />
  1162. <Control name="message30" text="Please enter the correct numerical format" />
  1163. <Control name="message31" text="Please enter the correct numerical format" />
  1164. <Control name="message32" text="Please enter the correct numerical format" />
  1165. <Control name="message33" text="Please enter the correct numerical format" />
  1166. <Control name="message34" text="Enter integers between 0 and 255" />
  1167. <Control name="message35" text="Please enter the correct numerical format" />
  1168. <Control name="message36" text="Enter integers between 0 and 255" />
  1169. <Control name="message37" text="Please enter the correct numerical format" />
  1170. <Control name="message38" text="Enter integers between 0 and 255" />
  1171. <Control name="message39" text="Please enter the correct numerical format" />
  1172. <Control name="message40" text="Enter integers between 0 and 255" />
  1173. <Control name="message41" text="Please enter the correct numerical format" />
  1174. <Control name="message42" text="Please enter the correct numerical format" />
  1175. <Control name="message43" text="Please enter a value not less than 40" />
  1176. <Control name="message44" text="Excessive input value!" />
  1177. <Control name="message45" text="Excessive input value" />
  1178. <Control name="message46" text="Excessive input value" />
  1179. <Control name="message47" text="Excessive input value" />
  1180. <Control name="message48" text="Input value is too small" />
  1181. <Control name="message49" text="Input value is too small" />
  1182. <Control name="message50" text="Please enter the correct range of values" />
  1183. <Control name="message51" text="Input value is too small" />
  1184. <Control name="message52" text="Input value is too small" />
  1185. <Control name="message53" text="Please enter the correct range of values" />
  1186. <Control name="message54" text="Failed to save sample desk!" />
  1187. <Control name="message55" text="Please enter the correct numerical format" />
  1188. <Control name="message56" text="Input value is too Large!" />
  1189. <Control name="message57" text="Input value is too Large!" />
  1190. <Control name="message58" text="Input value is too Large!" />
  1191. <Control name="message59" text="Please enter the correct numerical format" />
  1192. <Control name="message60" text="Please enter the correct numerical format" />
  1193. <Control name="message61" text="The item which called Using X-ray cannot be empty!" />
  1194. <Control name="message62" text="The entered measurement area area cannot be empty!" />
  1195. <Control name="message63" text="Please enter the correct numerical format!" />
  1196. <Control name="message64" text="Please enter the correct numerical format!" />
  1197. <Control name="message65" text="The entered corrosion expansion coefficient cannot be empty!" />
  1198. <Control name="message66" text="Please enter a positive odd number or 0!" />
  1199. </Controls>
  1200. </Form>
  1201. <Form>
  1202. <Name>SpecialParticleForm</Name>
  1203. <Controls>
  1204. <Control name="SpecialParticleForm" text="Special Gray Grain Recognition Settings" />
  1205. <Control name="RegName" text="RegName" />
  1206. <Control name="start" text="grayStart(0-255)" />
  1207. <Control name="end" text="grayEnd(0-255)" />
  1208. <Control name="diameterStart" text="diameterStart(um)" />
  1209. <Control name="diameterEnd" text="diameterEnd(um)" />
  1210. <Control name="collectXray" text="collectXray" />
  1211. <Control name="rangeChoose" text="rangeChoose" />
  1212. <Control name="checkBox1" text="Enable" />
  1213. <Control name="button1" text="Add" />
  1214. <Control name="button3" text="Delete" />
  1215. <Control name="confirm" text="Confirm" />
  1216. <Control name="button2" text="Cancel" />
  1217. </Controls>
  1218. </Form>
  1219. <Form>
  1220. <Name>frmSpecialGrayParticle</Name>
  1221. <Controls>
  1222. <Control name="frmSpecialGrayParticle" text="Set the foreground gray scale" />
  1223. <Control name="groupBox1" text="Set parameters" />
  1224. <Control name="label1" text="Grayscale range" />
  1225. <Control name="btnYes" text="confirm" />
  1226. <Control name="btnCancel" text="cancel" />
  1227. </Controls>
  1228. </Form>
  1229. <Form>
  1230. <Name>OTSSolutionWindow</Name>
  1231. <Controls>
  1232. <Control name="toolStripMenuItem1" text="IncreaseSample" />
  1233. <Control name="DeleteNode" text="DeleteSample" />
  1234. <Control name="SampleParaLock" text="EditLock" />
  1235. <Control name="ClearMeasureData" text="ClearData" />
  1236. <Control name="OTSSolutionWindow" text="SampleWindow" />
  1237. <Control name="m_DefaultSolutionName" text="Unloaded sample name" />
  1238. <Control name="m_DefaultSampleName" text="sample" />
  1239. <Control name="message1" text="Are you sure you want to delete it?" />
  1240. </Controls>
  1241. </Form>
  1242. <Form>
  1243. <Name>DlgStageEdit</Name>
  1244. <Controls>
  1245. <Control name="str1" text="HoleName" />
  1246. <Control name="str2" text="HoleShape" />
  1247. <Control name="str3" text="Center X coordinate" />
  1248. <Control name="str4" text="Center Y coordinate" />
  1249. <Control name="str5" text="WidthorDiameter" />
  1250. <Control name="str6" text="Heightor0" />
  1251. <Control name="str7" text="Circle" />
  1252. <Control name="str8" text="Square" />
  1253. <Control name="str9" text="The sample station name cannot be an empty string and cannot contain \ \ ', \ \' characters!" />
  1254. <Control name="label1" text="StageName:" />
  1255. <Control name="label2" text="coordinate system:" />
  1256. <Control name="radioButton_OTS" text="OTS coordinate system" />
  1257. <Control name="radioButton_SEM" text="SEM coordinate system" />
  1258. <Control name="groupBox1" text="Sample stage border" />
  1259. <Control name="label3" text="StageFrameShape: " />
  1260. <Control name="radioButton_BoundaryCircle" text="Circle" />
  1261. <Control name="radioButton_BoundarySquare" text="Square" />
  1262. <Control name="label4" text="CenterPointCoordinates:" />
  1263. <Control name="label7" text="Width:" />
  1264. <Control name="label8" text="Height:" />
  1265. <Control name="groupBox2" text="Standard sample" />
  1266. <Control name="label14" text="Standard shape:" />
  1267. <Control name="radioButton_StandardsampleCircle" text="Circle" />
  1268. <Control name="radioButton_StandardsampleSqare" text="Sqare" />
  1269. <Control name="label13" text="CenterPointCoordinates: " />
  1270. <Control name="label10" text="Width:" />
  1271. <Control name="groupBox3" text="SampleHoleInformation(um):" />
  1272. <Control name="button_AddHole" text="AddHole" />
  1273. <Control name="button_DelHole" text="DelHole" />
  1274. <Control name="button_Generate" text="Generate" />
  1275. <Control name="button_Coordinate" text="CoordinateDisplay" />
  1276. <Control name="button_Ok" text="Save" />
  1277. </Controls>
  1278. </Form>
  1279. <Form>
  1280. <Name>OTSPropertyWindow</Name>
  1281. <Controls>
  1282. <Control name="OTSPropertyWindow" text="PropertiesWindow" />
  1283. </Controls>
  1284. </Form>
  1285. <Form>
  1286. <Name>MeasureCheckReportInfoWindow</Name>
  1287. <Controls>
  1288. <Control name="label6" text="Frames:" />
  1289. <Control name="label5" text="Particles:" />
  1290. <Control name="label4" text="Start:" />
  1291. <Control name="label3" text="MeasuringTime:" />
  1292. <Control name="label1" text="Measurements:" />
  1293. <Control name="label2" text="Status:" />
  1294. <Control name="label7" text="EndingTime:" />
  1295. <Control name="MeasureCheckReportInfoWindow" text="MeasurementResult" />
  1296. <Control name="str1" text="day" />
  1297. <Control name="str2" text="hour" />
  1298. <Control name="str3" text="minute" />
  1299. <Control name="str4" text="second" />
  1300. <Control name="str5" text="0second" />
  1301. </Controls>
  1302. </Form>
  1303. <Form>
  1304. <Name>MeasureProgressInfoWindow</Name>
  1305. <Controls>
  1306. <Control name="label1" text="SampleName" />
  1307. <Control name="label6" text="FrameCount" />
  1308. <Control name="label5" text="ParticleNumber" />
  1309. <Control name="label4" text="StartTime" />
  1310. <Control name="label3" text="MeasuringTime" />
  1311. <Control name="label2" text="State" />
  1312. <Control name="str1" text="day" />
  1313. <Control name="str2" text="hour" />
  1314. <Control name="str3" text="minute" />
  1315. <Control name="str4" text="second" />
  1316. <Control name="MeasureProgressInfoWindow" text="MeasurementProgress" />
  1317. </Controls>
  1318. </Form>
  1319. <Form>
  1320. <Name>OTSMeasureResultWindow</Name>
  1321. <Controls>
  1322. <Control name="label5" text="CurParticleSize" />
  1323. <Control name="label6" text="FrameCount" />
  1324. <Control name="label1" text="SampleName" />
  1325. <Control name="label2" text="Progress" />
  1326. <Control name="label3" text="MeasuringTime" />
  1327. <Control name="label4" text="StartTime" />
  1328. <Control name="TypeId" text="Classification " />
  1329. <Control name="strName" text="Name" />
  1330. <Control name="Number" text="Count" />
  1331. <Control name="Area" text="Area" />
  1332. <Control name="str1" text="day" />
  1333. <Control name="str2" text="hour" />
  1334. <Control name="str3" text="minute" />
  1335. <Control name="str4" text="second" />
  1336. <Control name="str5" text="Set the current measurement list error message:" />
  1337. <Control name="str6" text="Total particles:" />
  1338. <Control name="str7" text="Total area:" />
  1339. <Control name="str8" text="Set the current measurement list error message:" />
  1340. <Control name="state1" text="Complete" />
  1341. <Control name="state2" text="Fail" />
  1342. <Control name="state3" text="Stop" />
  1343. </Controls>
  1344. </Form>
  1345. <Form>
  1346. <Name>OTSMeasureStatusWindow</Name>
  1347. <Controls>
  1348. <Control name="SampleParaLock" text="GetBSEDiagram" />
  1349. <Control name="VisualAdjustingMenu" text="Set the visual gray range of BSE image" />
  1350. <Control name="toolStripMenuItem1" text="Set the grayscale range of special particles for visualization" />
  1351. <Control name="ChangeDiffImageShow" text="SwitchToBSE" />
  1352. <Control name="ToolStripMenuItem" text="De-backgroundImage " />
  1353. <Control name="ToolStripMenuItem2" text="De-backgroundcolorImage " />
  1354. <Control name="grayToolStripMenuItem" text="DisplayB-GrayCurve" />
  1355. <Control name="AbandonGrayStripMenuItem" text="DisplayBackground-freeGray-scaleCurve" />
  1356. <Control name="MenuItemLineScan" text="LineScanningCurve" />
  1357. <Control name="PointScanElementMenuItem" text="PointScanElement" />
  1358. <Control name="ExportScanInfoMenuItem" text="ExportScanInfo" />
  1359. <Control name="message1" text="SwitchBSEDiagram" />
  1360. <Control name="message2" text="SwitchBSEDiagram" />
  1361. <Control name="message3" text="Data less than 2!" />
  1362. <Control name="message4" text="Gray value:" />
  1363. <Control name="message5" text="SwitchBSEDiagram" />
  1364. <Control name="message6" text="SwitchToBSEDe-backgroundImage" />
  1365. <Control name="message7" text="Diagram" />
  1366. <Control name="message8" text="GrayScaleCurve" />
  1367. <Control name="message9" text="De-backgroundGrayscaleCurve" />
  1368. <Control name="message10" text="Get single-point scanning data: number of elements: '" />
  1369. <Control name="message11" text=",the element name: '" />
  1370. <Control name="message12" text="DefaultLibrary" />
  1371. <Control name="message13" text="UserDefinedLibrary" />
  1372. <Control name="message14" text="SystemLibrary" />
  1373. <Control name="message15" text="Save the picture error log:" />
  1374. <Control name="message16" text="ElementName" />
  1375. <Control name="message17" text="AtomicNumber" />
  1376. <Control name="message18" text="PercentageOfMass" />
  1377. <Control name="message19" text="MoleRatio" />
  1378. <Control name="message20" text="Acquire image error acquirebseimage_ Click:" />
  1379. <Control name="message21" text="Delete single point acquisition information and display ruler information:" />
  1380. <Control name="message22" text="Data is less than 2!" />
  1381. <Control name="message23" text="error" />
  1382. <Control name="message24" text="Get SEM current location:" />
  1383. </Controls>
  1384. </Form>
  1385. <Form>
  1386. <Name>OTSSamplespaceWindow</Name>
  1387. <Controls>
  1388. <Control name="CMStrip" text="AddSample" />
  1389. <Control name="AddStage" text="AddMeasurement" />
  1390. <Control name="DeleteStage" text="DelMeasurement" />
  1391. <Control name="ReadSEMData" text="ReadSEMData" />
  1392. <Control name="SetSemData" text="SetSemData" />
  1393. <Control name="SetSEMCenterLocation" text="SetToTheCurrentLocation" />
  1394. <Control name="DriveSEMToCenterLocation" text="DriveSEMToCenterLocation" />
  1395. <Control name="DriveSEMToCurrentLocation" text="DriveSEMToCurrentLocation" />
  1396. <Control name="ShootBSEPicture" text="ShootBSEPicture" />
  1397. <Control name="DeleteBSEPicture" text="DeleteBSEPicture" />
  1398. <Control name="DeleteSampleData" text="InitializeSampleMeasure" />
  1399. <Control name="SlopFocusMenuItem" text="InclinedPlaneFocus" />
  1400. <Control name="message1" text="Start acquiring frame information " />
  1401. <Control name="message2" text="Error log" />
  1402. <Control name="message3" text="DriveSEMToCurrentLocation:--Error log" />
  1403. <Control name="message4" text="DriveSEMToCenterLocation:--Error log" />
  1404. <Control name="message5" text="Get the current position of SEM:--Error log" />
  1405. <Control name="message6" text="Connecting electron microscope" />
  1406. <Control name="message7" text="Delete BSE Scanning Chart by Yes Confirmation" />
  1407. <Control name="message8" text="Delete BSE Scanning Chart of Sample Hole by Yes Confirmation" />
  1408. <Control name="message9" text="Delete BSE picture error message:" />
  1409. <Control name="message10" text="Is the polygon area drawn?" />
  1410. <Control name="message11" text="Tip" />
  1411. <Control name="message12" text="The current position of the SEM has exceeded the range of the sample stage and cannot be moved!" />
  1412. </Controls>
  1413. </Form>
  1414. <Form>
  1415. <Name>CStageManage</Name>
  1416. <Controls>
  1417. <Control name="ShootBSEPicture1" text="HoleMode" />
  1418. <Control name="ShootBSEPicture2" text="MeasureMode" />
  1419. </Controls>
  1420. </Form>
  1421. <Form>
  1422. <Name>RingGdiDataInput</Name>
  1423. <Controls>
  1424. <Control name="RingGdiDataInput" text="RingConfiguration" />
  1425. <Control name="label1" text="Enter the outer diameter(micron) :" />
  1426. <Control name="label2" text="Enter the ring width (micron) :" />
  1427. <Control name="button1" text="OK" />
  1428. <Control name="button2" text="Cancel" />
  1429. </Controls>
  1430. </Form>
  1431. <Form>
  1432. <Name>SampleGrid</Name>
  1433. <Controls>
  1434. <Control name="m_reportname1" text="Classification of Common Particles" />
  1435. <Control name="m_str_axisy1" text="ParticleNumber" />
  1436. <Control name="str_operatonmodule1" text="Classification Chart of Common Particles" />
  1437. <Control name="m_reportname2" text="ParticleComposition" />
  1438. <Control name="m_str_axisy2" text="ParticleNumber" />
  1439. <Control name="str_operatonmodule2" text="ParticleCompositionMap" />
  1440. <Control name="m_reportname3" text="ElementComposition" />
  1441. <Control name="m_str_axisy3" text="ElementContent" />
  1442. <Control name="str_operatonmodule3" text="Elemental Component Map" />
  1443. <Control name="m_reportname4" text="Particle Distribution" />
  1444. <Control name="m_str_axisy4" text="ParticleNumber" />
  1445. <Control name="str_operatonmodule4" text="Particle Size Distribution Map" />
  1446. <Control name="str_operatonmodule5" text="Three phase diagram" />
  1447. <Control name="str1" text="Parameter" />
  1448. <Control name="str2" text="ConventionalParameters" />
  1449. </Controls>
  1450. </Form>
  1451. <Form>
  1452. <Name>ParticlesGrid</Name>
  1453. <Controls>
  1454. <Control name="ToolStripMenuItem1" text="Copy the entire table" />
  1455. <Control name="ToolStripMenuItem2" text="Replication Selection Area" />
  1456. <Control name="toolStripMenuItem4" text="Duplicate image" />
  1457. <Control name="ToolStripMenuItem3" text="Restore to the initial state" />
  1458. <Control name="ToolStripMenuItem5" text="Move SEM to the Particle Horizon Position" />
  1459. <Control name="ToolStripMenuItem_selectparticle" text="Selected granules" />
  1460. <Control name="ToolStripMenuItem_exportimagefile" text="Export image file" />
  1461. <Control name="ToolStripMenuItem_exportzoomimagefile" text="Export enlarged image file" />
  1462. <Control name="str1" text="Selected particles" />
  1463. <Control name="str2" text="Selected" />
  1464. <Control name="str3" text="Please switch to the analysis chart!" />
  1465. <Control name="str4" text="No" />
  1466. <Control name="str5" text="Image" />
  1467. <Control name="str6" text="Name" />
  1468. <Control name="str7" text="Start loading granular list information" />
  1469. <Control name="str8" text="Particle list, loaded" />
  1470. <Control name="str9" text="Export completed, image total" />
  1471. <Control name="str12" text="Load the granular list and start creating table structured Columns" />
  1472. <Control name="str15" text="Loading particle list, getting" />
  1473. <Control name="str18" text="Value" />
  1474. <Control name="partcletype0" text="SMALL" />
  1475. <Control name="partcletype1" text="OVERSIZE" />
  1476. <Control name="partcletype2" text="AVE_GRAY_NOT_INRANRE" />
  1477. <Control name="partcletype4" text="LOW_COUNT" />
  1478. <Control name="partcletype6" text="NO_ANALYSIS_X_RAY" />
  1479. <Control name="partcletype7" text="NOT_IDENTIFIED_SIC" />
  1480. <Control name="partcletype8" text="NOT_IDENTIFIED_FEO" />
  1481. <Control name="partcletype9" text="NOT_IDENTIFIED" />
  1482. </Controls>
  1483. </Form>
  1484. <Form>
  1485. <Name>ParticlesGridDevidePage</Name>
  1486. <Controls>
  1487. <Control name="ToolStripMenuItem1" text="Copy the entire table" />
  1488. <Control name="ToolStripMenuItem2" text="Replication Selection Area" />
  1489. <Control name="toolStripMenuItem4" text="Copy the entire list image that is currently displayed" />
  1490. <Control name="ToolStripMenuItem3" text="Restore to the initial state" />
  1491. <Control name="ToolStripMenuItem5" text="Move SEM to the Particle Horizon Position" />
  1492. <Control name="ToolStripMenuItem_selectparticle" text="Selected granules" />
  1493. <Control name="ToolStripMenuItem_exportimagefile" text="Export image file" />
  1494. <Control name="ToolStripMenuItem_exportzoomimagefile" text="Export enlarged image file" />
  1495. <Control name="label_Condition" text="SearchConditions:" />
  1496. <Control name="label_Area" text="Area(μm²)" />
  1497. <Control name="label_Dmax" text="Dmax(μm)" />
  1498. <Control name="label_ParticleName" text="ParticleName" />
  1499. <Control name="btn_Sel" text="Search" />
  1500. <Control name="btn_ReMeasure" text="ReMeasure" />
  1501. <Control name="label_order" text="Sort by:" />
  1502. <Control name="label1" text="Total" />
  1503. <Control name="label4" text="Records, Per page" />
  1504. <Control name="label2" text="Records,Total" />
  1505. <Control name="label6" text="page" />
  1506. <Control name="str1" text="Selected particles" />
  1507. <Control name="str2" text="Selected" />
  1508. <Control name="str3" text="Please switch to the analysis chart!" />
  1509. <Control name="str4" text="No" />
  1510. <Control name="str5" text="Image" />
  1511. <Control name="str6" text="Name" />
  1512. <Control name="str7" text="Start loading granular list information" />
  1513. <Control name="str8" text="Particle list, loaded" />
  1514. <Control name="str9" text="Export completed, image total" />
  1515. <Control name="str10" text="The type of input is error!" />
  1516. <Control name="str11" text="Please pay attention to the corresponding size relationship of the input value! "/>
  1517. <Control name="str12" text="Load the granular list and start creating table structured Columns" />
  1518. <Control name="str15" text="Loading particle list, getting" />
  1519. <Control name="str18" text="Value" />
  1520. <Control name="partcletype0" text="SMALL" />
  1521. <Control name="partcletype1" text="OVERSIZE" />
  1522. <Control name="partcletype2" text="AVE_GRAY_NOT_INRANRE" />
  1523. <Control name="partcletype4" text="LOW_COUNT" />
  1524. <Control name="partcletype6" text="NO_ANALYSIS_X_RAY" />
  1525. <Control name="partcletype7" text="NOT_IDENTIFIED_SIC" />
  1526. <Control name="partcletype8" text="NOT_IDENTIFIED_FEO" />
  1527. <Control name="partcletype9" text="NOT_IDENTIFIED" />
  1528. <Control name="str21" text="Areaμm²" />
  1529. <Control name="str22" text="Equivalent circle diameterμm" />
  1530. <Control name="str23" text="Longest diameterμm" />
  1531. <Control name="str24" text="Minimum diameterμm" />
  1532. <Control name="str25" text="Long short diameter ratio" />
  1533. <Control name="str26" text="Ferret diameterμm" />
  1534. <Control name="str27" text="Orthogonal diameterμm" />
  1535. <Control name="str28" text="Perimeterμm" />
  1536. <Control name="str29" text="Inscribed circle diameterμm" />
  1537. <Control name="str30" text="Average diameter of inscribed circleμm!" />
  1538. <Control name="str31" text="Expansion lengthμm" />
  1539. <Control name="str32" text="Expanded aspect ratio" />
  1540. <Control name="str33" text="Orientation angle °" />
  1541. <Control name="str34" text="Hardness" />
  1542. <Control name="str35" text="Density" />
  1543. <Control name="str36" text="Electrical_conductivity" />
  1544. <Control name="btn_showconfig" text="configuration"/>
  1545. <Control name="EXCELToolStripMenuItem" text="Export to Excel"/>
  1546. <Control name="ToolStripMenuItemDelete_Particle" text="Delete particles"/>
  1547. <Control name="cB_Electrical_conductivity" text="Electric conductivity"/>
  1548. <Control name="cB_Hardness" text="Hardness"/>
  1549. <Control name="cB_Density" text="Density"/>
  1550. </Controls>
  1551. </Form>
  1552. <Form>
  1553. <Name>OTSSysSTDMgrClass</Name>
  1554. <Controls>
  1555. <Control name="str1" text="INVALID" />
  1556. <Control name="str2" text="SMALL" />
  1557. <Control name="str3" text="OVERSIZE" />
  1558. <Control name="str4" text="AVE_GRAY_NOT_INRANRE" />
  1559. <Control name="str5" text="SEARCH_X_RAY" />
  1560. <Control name="str6" text="LOW_COUNT" />
  1561. <Control name="str7" text="NO_INTEREST_ELEMENTS" />
  1562. <Control name="str8" text="ALAYSIS_X_RAY" />
  1563. <Control name="str9" text="NOT_IDENTIFIED_SiC" />
  1564. <Control name="str10" text="NOT_IDENTIFIED_FeO" />
  1565. <Control name="str11" text="Unidentified particles" />
  1566. </Controls>
  1567. </Form>
  1568. <!-- OTSPeriodicTable -->
  1569. <Form>
  1570. <Name>ClassinicationRuleForm</Name>
  1571. <Controls>
  1572. <Control name="btnadd" text="Add" />
  1573. <Control name="label3" text="Max" />
  1574. <Control name="label2" text="MinGray" />
  1575. <Control name="label4" text="Representative" />
  1576. <Control name="label1" text="AspectRatio" />
  1577. <Control name="groupBox4" text="ParticleName" />
  1578. <Control name="btndel" text="Delete" />
  1579. <Control name="groupBox5" text="ElementalInfo" />
  1580. <Control name="btnRuleAdd" text="RuleAdd+" />
  1581. <Control name="btnAddFromSysSTD" text="AddFromSysSTD+" />
  1582. <Control name="btn_selectperiodic" text="AddFromPeriodic+" />
  1583. <Control name="btn_dbs" text="[ClickSelect]" />
  1584. <Control name="btn_ok" text="OK" />
  1585. <Control name="btn_saveas" text="Saveas" />
  1586. <Control name="btn_exit" text="Exit" />
  1587. <Control name="btn_open" text="Open" />
  1588. <Control name="groupBox3" text="StandardLibraryName" />
  1589. <Control name="btn_clear" text="Clear" />
  1590. <Control name="ClassinicationRuleForm" text="ClassinicationRuleForm" />
  1591. <Control name="str1" text="ElementName" />
  1592. <Control name="str2" text="Min" />
  1593. <Control name="str3" text="Max" />
  1594. <Control name="str4" text="Upd" />
  1595. <Control name="str5" text="Del" />
  1596. <Control name="str6" text="ParticleId" />
  1597. <Control name="str7" text="ParticleName" />
  1598. <Control name="str8" text="Name" />
  1599. <Control name="str9" text="Color" />
  1600. <Control name="str10" text="Parameters" />
  1601. <Control name="str11" text="MinGray" />
  1602. <Control name="str12" text="MaxGray" />
  1603. <Control name="str13" text="ElementNumber" />
  1604. <Control name="str14" text="ParticleId" />
  1605. <Control name="str15" text="ElementName" />
  1606. <Control name="str16" text="NumberOfAtoms" />
  1607. <Control name="str17" text="Rule" />
  1608. <Control name="str18" text="Min" />
  1609. <Control name="str19" text="Max" />
  1610. <Control name="str20" text="Please enter the category name you want to add" />
  1611. <Control name="str21" text="Please select the Particle to be removed" />
  1612. <Control name="str22" text="Do you want to remove Particle?" />
  1613. <Control name="str23" text="The minimum value of gray scale interval cannot be greater than the maximum value" />
  1614. <Control name="str24" text="Input error" />
  1615. <Control name="str25" text="ClassificationNumber" />
  1616. <Control name="str26" text="Standard library for particle analysis, failed to save element list" />
  1617. <Control name="str27" text="Standard database for particle analysis failed to save particle list" />
  1618. <Control name="str28" text="Failure of Standard Library for Particle Analysis" />
  1619. <Control name="str29" text="Please enter the standard library name" />
  1620. <Control name="str30" text="Please enter Classification rules" />
  1621. <Control name="str31" text="Please enter the library name first." />
  1622. <Control name="str32" text="Do you want to quit?" />
  1623. <Control name="str33" text="SignOut" />
  1624. <Control name="str34" text="Please select the corresponding Particle and edit it again!" />
  1625. <Control name="str35" text="Please select particles before adding element rules!" />
  1626. <Control name="str36" text="Do you want to delete all information?" />
  1627. </Controls>
  1628. </Form>
  1629. <Form>
  1630. <Name>ClassinicationRuleForm_Edit</Name>
  1631. <Controls>
  1632. <Control name="label1" text="ElementName" />
  1633. <Control name="label2" text="Min" />
  1634. <Control name="label3" text="Max" />
  1635. <Control name="btn_ok" text="OK" />
  1636. <Control name="btn_esc" text="Cancel" />
  1637. <Control name="ClassinicationRuleForm_Edit" text="ClassinicationRuleForm_Edit" />
  1638. <Control name="str1" text="Modify" />
  1639. <Control name="str2" text="[ModifyingElementRules]" />
  1640. <Control name="str3" text="Add" />
  1641. <Control name="str4" text="[AddingRules]" />
  1642. <Control name="str5" text="The element name cannot be empty" />
  1643. <Control name="str6" text="The minimum value of the element to be filled in cannot be empty" />
  1644. <Control name="str7" text="The maximum value of the element to be filled in cannot be empty" />
  1645. <Control name="str8" text="Incorrect element name" />
  1646. <Control name="str9" text="The element name you filled in does not exist. Please fill it in again." />
  1647. <Control name="str10" text="The input element already exists. Please re-enter it." />
  1648. <Control name="str11" text="ElementNumber" />
  1649. <Control name="str12" text="ParticleId" />
  1650. <Control name="str13" text="ElementName" />
  1651. <Control name="str14" text="AtomsNum" />
  1652. <Control name="str15" text="Rule" />
  1653. <Control name="str16" text="Min" />
  1654. <Control name="str17" text="Max" />
  1655. </Controls>
  1656. </Form>
  1657. <Form>
  1658. <Name>ClassinicationRuleFromSysSTDForm</Name>
  1659. <Controls>
  1660. <Control name="groupBox1" text="System Definition Inclusion List" />
  1661. <Control name="label1" text="SelectionOfLibrary" />
  1662. <Control name="groupBox2" text="IncludedElements" />
  1663. <Control name="btn_ok" text="Add" />
  1664. <Control name="btn_exit" text="SignOut" />
  1665. <Control name="button1" text="AddAll" />
  1666. <Control name="ClassinicationRuleFromSysSTDForm" text="AddFromSystemStandardLibrary" />
  1667. <Control name="str1" text="System Standard Library File Not Found!" />
  1668. <Control name="str2" text="Symbol" />
  1669. <Control name="str3" text="ElementName" />
  1670. <Control name="str4" text="ChineseName" />
  1671. <Control name="str5" text="Particle ID" />
  1672. <Control name="str6" text="Start" />
  1673. <Control name="str7" text="End" />
  1674. <Control name="str8" text=" AtomsNumber" />
  1675. <Control name="str9" text="Name" />
  1676. <Control name="str10" text="Number" />
  1677. <Control name="str11" text="Representative" />
  1678. <Control name="str12" text="AspectRatio" />
  1679. <Control name="str13" text="ElementNumber" />
  1680. <Control name="str14" text="AtomsNumber" />
  1681. <Control name="str15" text="Rule" />
  1682. <Control name="str16" text="Min" />
  1683. <Control name="str17" text="Max" />
  1684. </Controls>
  1685. </Form>
  1686. <Form>
  1687. <Name>OTSPeriodicTableForm</Name>
  1688. <Controls>
  1689. <Control name="OTSPeriodicTableForm" text="Periodic table of elements" />
  1690. </Controls>
  1691. </Form>
  1692. <Form>
  1693. <Name>OTSPeriodicTableForm_Small</Name>
  1694. <Controls>
  1695. <Control name="OTSPeriodicTableForm_Small" text="Periodic table of elements" />
  1696. </Controls>
  1697. </Form>
  1698. <Form>
  1699. <Name>OTSMeasureOutputNlog</Name>
  1700. <Controls>
  1701. <Control name="OTSMeasureOutputNlog" text="LogOutput" />
  1702. <Control name="label1" text="LogOutputStype:" />
  1703. <Control name="button_clear" text="Clear" />
  1704. <Control name="button_stop" text="Stop" />
  1705. </Controls>
  1706. </Form>
  1707. <Form>
  1708. <Name>ToolWindow</Name>
  1709. <Controls>
  1710. <Control name="ToolWindow" text="Set the visual gray range of BSE image" />
  1711. <Control name="groupBox1" text="Set parameters" />
  1712. <Control name="label1" text="Grayscale range" />
  1713. <Control name="btnYes" text="confirm" />
  1714. <Control name="btnCancel" text="cancel" />
  1715. </Controls>
  1716. </Form>
  1717. <Form>
  1718. <Name>DINStandardABCDDS</Name>
  1719. <Controls>
  1720. <Control name="str1" text="Inclusion grade" />
  1721. <Control name="str2" text="result" />
  1722. <Control name="str3" text="K0 index" />
  1723. </Controls>
  1724. </Form>
  1725. <Form>
  1726. <Name>frmParticleClassification</Name>
  1727. <Controls>
  1728. <Control name="frmParticleClassification" text="Set particle classification" />
  1729. <Control name="label1" text="Select type" />
  1730. <Control name="button1" text="determine" />
  1731. </Controls>
  1732. </Form>
  1733. <Form>
  1734. <Name>frmReMeasure</Name>
  1735. <Controls>
  1736. <Control name="frmReMeasure" text="ReMeasure" />
  1737. <Control name="groupBox_img" text="ParticleImage" />
  1738. <Control name="groupBox_param" text="MeasureParam" />
  1739. <Control name="groupBox_state" text="MeasureState" />
  1740. <Control name="BTN_EXPORT" text="Export" />
  1741. <Control name="BTN_NO" text="Stop" />
  1742. <Control name="BTN_YES" text="Begin" />
  1743. <Control name="LB_IMGSCANSPEED" text="ImgScanSpeed:" />
  1744. <Control name="LB_Outspread" text="Outspread:" />
  1745. <Control name="LB_SCANTIME" text="ScanTime(ms):" />
  1746. <Control name="LB_XRAYSCANMODE" text="XrayScanMode:" />
  1747. <Control name="LB_partFun" text="ParticleFun:" />
  1748. <Control name="LB_HAND" text="HandFun:" />
  1749. <Control name="str1" text="No" />
  1750. <Control name="str2" text="Failed to connect to IPC server!" />
  1751. <Control name="str3" text="Processing complete!" />
  1752. <Control name="str4" text="---Start processing particles:" />
  1753. <Control name="str5" text="Set magnification:" />
  1754. <Control name="str6" text="Failed to set magnification!" />
  1755. <Control name="str7" text="Move to particle Center:" />
  1756. <Control name="str8" text="Move to particle center failed!" />
  1757. <Control name="str9" text="Remake:" />
  1758. <Control name="str10" text="Failed to take pictures!" />
  1759. <Control name="str11" text="Looking for new location particle information:" />
  1760. <Control name="str12" text="Failed to find new location particle information!" />
  1761. <Control name="str13" text="Energy spectrum acquisition:" />
  1762. <Control name="str14" text="Failed to collect energy spectrum!" />
  1763. <Control name="str15" text="Energy spectrum analysis results:" />
  1764. <Control name="str16" text="---End processing particles:" />
  1765. <Control name="str17" text="Processing complete!" />
  1766. <Control name="str18" text="Please manually select the particles to be processed on the picture!" />
  1767. <Control name="str19" text="IsReMeasure" />
  1768. <Control name="str20" text="TypeName" />
  1769. <Control name="str21" text="Area μm²" />
  1770. <Control name="str22" text="EquivalentCircleDiameter μm" />
  1771. <Control name="str23" text="MaxDiameter μm" />
  1772. <Control name="str24" text="MinDiameter μm" />
  1773. <Control name="str25" text="DiameterRatio" />
  1774. <Control name="str26" text="FerretDiameter um" />
  1775. <Control name="str27" text="PERP um" />
  1776. <Control name="str28" text="PERI um" />
  1777. <Control name="str29" text="INSCR um" />
  1778. <Control name="str30" text="MEAN um" />
  1779. <Control name="str31" text="ELONG um" />
  1780. <Control name="str32" text="ASPECT_ELONG" />
  1781. <Control name="str33" text="Orientation°" />
  1782. <Control name="str34" text="Electrical_conductivity" />
  1783. <Control name="str35" text="Density" />
  1784. <Control name="str36" text="Hardness" />
  1785. <Control name="str37" text="Export Success!" />
  1786. <Control name="str38" text="Tips" />
  1787. </Controls>
  1788. </Form>
  1789. <Form>
  1790. <Name>InclusionsTraceability</Name>
  1791. <Controls>
  1792. <Control name="ToolStripMenuItem1" text="Copy Entire Table" />
  1793. <Control name="ToolStripMenuItem2" text="Copy Selected Area" />
  1794. <Control name="toolStripMenuItem4" text="Copy Current Displayed List Image" />
  1795. <Control name="ToolStripMenuItem3" text="Restore to Initial State" />
  1796. <Control name="ToolStripMenuItem5" text="Move SEM to Particle Field Position" />
  1797. <Control name="ToolStripMenuItem_selectparticle" text="Select Particle" />
  1798. <Control name="ToolStripMenuItem_exportimagefile" text="Export Image File" />
  1799. <Control name="ToolStripMenuItem_exportzoomimagefile" text="Export Zoomed Image File" />
  1800. <Control name="label_Condition" text="Query Condition:" />
  1801. <Control name="label_Area" text="Area (μm²)" />
  1802. <Control name="label_Dmax" text="Dmax(μm)" />
  1803. <Control name="label_ParticleName" text="Particle Name" />
  1804. <Control name="label1" text="The minimum ECD for foreign inclusions:" />
  1805. <Control name="label3" text="Type:" />
  1806. <Control name="cB_contain" text="Whether to include" />
  1807. <Control name="btn_Sel" text="Query" />
  1808. <Control name="bn_Find" text="Find" />
  1809. <Control name="str1" text="Refining slag" />
  1810. <Control name="str2" text="Refractory material" />
  1811. <Control name="str3" text="Refining slag+Refractory material" />
  1812. <Control name="str4" text="rowid" />
  1813. <Control name="str5" text="ParticleImage" />
  1814. <Control name="str6" text="TypeName" />
  1815. <Control name="str21" text="Area(μm²)" />
  1816. <Control name="str22" text="Equivalent circle diameter(μm)" />
  1817. <Control name="str23" text="Longest diameter(μm)" />
  1818. <Control name="str24" text="Minimum diameter(μm)" />
  1819. <Control name="str25" text="Long short diameter ratio" />
  1820. <Control name="str26" text="Ferret diameter(μm)" />
  1821. <Control name="str27" text="Orthogonal diameter(μm)" />
  1822. <Control name="str28" text="Perimeter(μm)" />
  1823. <Control name="str29" text="Inscribed circle diameter(μm)" />
  1824. <Control name="str30" text="Average diameter of inscribed circle(μm)!" />
  1825. <Control name="str31" text="Expansion length(μm)" />
  1826. <Control name="str32" text="Expanded aspect ratio" />
  1827. <Control name="str33" text="Orientation angle °" />
  1828. <Control name="str34" text="Types of foreign inclusions" />
  1829. </Controls>
  1830. </Form>
  1831. <Form>
  1832. <Name>Purity</Name>
  1833. <Controls>
  1834. <Control name="Purity" text="Purity" />
  1835. <Control name="label1" text="RatingLevel:" />
  1836. <Control name="btn_cal" text="Cal" />
  1837. <Control name="label2" text="Results:" />
  1838. <Control name="label4" text="Reference:" />
  1839. <Control name="label3" text="Process:" />
  1840. </Controls>
  1841. </Form>
  1842. </Resource>