AppResource_ZH.xml 90 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="硬件" />
  8. <Control name="tabLanguage" text="语言" />
  9. <Control name="tabSysType" text="系统类型设置" />
  10. <Control name="tabother" text="其它" />
  11. <Control name="btn_otherconfig" text="其它配置" />
  12. <Control name="rdb_ch" text="中文[ZH]" />
  13. <Control name="rdb_en" text="英文[EN]" />
  14. <Control name="btnEDSTest" text="EDS测试" />
  15. <Control name="btnSEMTest" text="SEM测试" />
  16. <Control name="lblHEDSController" text="EDS控制器" />
  17. <Control name="lblHSEMController" text="SEM控制器" />
  18. <Control name="label1" text="Bruker版本" />
  19. <Control name="lblLanguage" text="语言" />
  20. <Control name="str1" text="请选择要设置的电镜类型!" />
  21. </Controls>
  22. </Form>
  23. <Form>
  24. <Name>ControllerSettingForm</Name>
  25. <Controls>
  26. <Control name="tabXRay" text="X-Ray测试" />
  27. <Control name="lblCollectionTime" text="采集时间" />
  28. <Control name="groupBox1" text="图像显示" />
  29. <Control name="btnDisplayXRay" text="单点采集" />
  30. <Control name="tabImage" text="BSE测试" />
  31. <Control name="groupBox2" text="图像显示" />
  32. <Control name="btnDisplay" text="图像采集" />
  33. <Control name="lblDwellTime" text="采集时间" />
  34. <Control name="lblResolution" text="分辨率" />
  35. <Control name="btnSaveImage" text="保存图片" />
  36. <Control name="btnAreaRay" text="面积采集" />
  37. <Control name="btnPointXRay" text="多点采集" />
  38. <Control name="btnClearData" text="清空" />
  39. <Control name="btnEanalysis" text="元素分析" />
  40. <Control name="str1" text="正在采集" />
  41. <Control name="str2" text="未获取到图像信息!" />
  42. <Control name="message1" text="请输入要设置的参数!" />
  43. <Control name="message2" text="连接硬件设备成功!" />
  44. <Control name="message3" text="连接硬件设备失败!" />
  45. <Control name="message4" text="设置成功!" />
  46. <Control name="message5" text="设置失败,请检查硬件是否连接!" />
  47. <Control name="message6" text="获取成功!" />
  48. <Control name="message7" text="获取失败,请检查硬件是否连接!" />
  49. <Control name="message8" text="设置的内容格式有错误!" />
  50. <Control name="message9" text="未连接硬件设备!" />
  51. <Control name="message10" text="与硬件设备已断开!" />
  52. </Controls>
  53. </Form>
  54. <Form>
  55. <Name>SemTestForms</Name>
  56. <Controls>
  57. <Control name="BtnConnect" text="连接" />
  58. <Control name="gbGetMethods" text="获取参数" />
  59. <Control name="lblGSemScanFieldY" text="扫描矩阵Y轴" />
  60. <Control name="lblGSemScanFieldX" text="扫描矩阵X轴" />
  61. <Control name="lblGHT" text="电压" />
  62. <Control name="lblGScanMode" text="扫描方式" />
  63. <Control name="lblGKV" text="电压值" />
  64. <Control name="lblGFWD" text="工作距离" />
  65. <Control name="lblGContrast" text="对比度" />
  66. <Control name="lblGBrightness" text="亮度" />
  67. <Control name="lblGSpotSize" text="光斑尺寸" />
  68. <Control name="lblGMagnification" text="放大倍数" />
  69. <Control name="lblGPositionR" text="角度" />
  70. <Control name="lblGBeamBlank" text="光束挡板" />
  71. <Control name="lblGPositionY" text="Y轴" />
  72. <Control name="lblGPositionX" text="X轴" />
  73. <Control name="btnDone" text="完成" />
  74. <Control name="btnGPositionXYR" text="获取" />
  75. <Control name="btnGContrast" text="获取" />
  76. <Control name="btnGBrightness" text="获取" />
  77. <Control name="btnGScanMode" text="获取" />
  78. <Control name="btnGLienTime" text="获取" />
  79. <Control name="btnGFWD" text="获取" />
  80. <Control name="btnGMagnification" text="获取" />
  81. <Control name="btnGBeamBlank" text="获取" />
  82. <Control name="btnGKV" text="获取" />
  83. <Control name="btnGSpotSize" text="获取" />
  84. <Control name="btnGSemScanFieldXY" text="获取" />
  85. <Control name="gbSetMethods" text="设置参数" />
  86. <Control name="btnSContrast" text="设置" />
  87. <Control name="btnScanMode" text="设置" />
  88. <Control name="btnSLienTime" text="设置" />
  89. <Control name="btnSFWD" text="设置" />
  90. <Control name="btnSMagnification" text="设置" />
  91. <Control name="btnSBeamBlank" text="设置" />
  92. <Control name="btnSKV" text="设置" />
  93. <Control name="btnSBrightness" text="设置" />
  94. <Control name="btnSSpotSize" text="设置" />
  95. <Control name="btnSPositionXYR" text="设置" />
  96. <Control name="btnHT" text="获取" />
  97. <Control name="btnSHT" text="设置" />
  98. <Control name="btnSSemScanFieldXY" text="设置" />
  99. <Control name="label15" text="扫描矩阵Y轴" />
  100. <Control name="label14" text="扫描矩阵X轴" />
  101. <Control name="label13" text="电压" />
  102. <Control name="label12" text="扫描方式" />
  103. <Control name="label11" text="电压值" />
  104. <Control name="label1" text="X轴" />
  105. <Control name="label10" text="工作距离" />
  106. <Control name="label3" text="Y轴" />
  107. <Control name="label9" text="对比度" />
  108. <Control name="label4" text="光束挡板" />
  109. <Control name="label5" text="角度" />
  110. <Control name="label8" text="亮度" />
  111. <Control name="label6" text="放大倍数" />
  112. <Control name="label7" text="光斑尺寸" />
  113. <Control name="message1" text="请输入要设置的参数!" />
  114. <Control name="message2" text="连接硬件设备成功!" />
  115. <Control name="message3" text="连接硬件设备失败!" />
  116. <Control name="message4" text="设置成功!" />
  117. <Control name="message5" text="设置失败,请检查硬件是否连接!" />
  118. <Control name="message6" text="获取成功!" />
  119. <Control name="message7" text="获取失败,请检查硬件是否连接!" />
  120. <Control name="message8" text="设置的内容格式有错误!" />
  121. <Control name="message9" text="未连接硬件设备!" />
  122. <Control name="message10" text="与硬件设备已断开!" />
  123. <Control name="str1" text="关闭连接" />
  124. <Control name="str2" text="连接" />
  125. </Controls>
  126. </Form>
  127. <Form>
  128. <Name>StageTest</Name>
  129. <Controls>
  130. <Control name="message1" text="请输入要设置的参数!" />
  131. <Control name="message2" text="连接硬件设备成功!" />
  132. <Control name="message3" text="连接硬件设备失败!" />
  133. <Control name="message4" text="设置成功!" />
  134. <Control name="message5" text="设置失败,请检查硬件是否连接!" />
  135. <Control name="message6" text="获取成功!" />
  136. <Control name="message7" text="获取失败,请检查硬件是否连接!" />
  137. <Control name="message8" text="设置的内容格式有错误!" />
  138. <Control name="message9" text="未连接硬件设备!" />
  139. <Control name="message10" text="与硬件设备已断开!" />
  140. <Control name="str1" text="关闭连接" />
  141. <Control name="str2" text="连接" />
  142. </Controls>
  143. </Form>
  144. <Form>
  145. <Name>frmBCRegulate</Name>
  146. <Controls>
  147. <Control name="frmcaption" text="亮度对比度调节" />
  148. <Control name="stdpos" text="标样位置" />
  149. <Control name="dark" text="暗相灰度" />
  150. <Control name="bright" text="亮相灰度" />
  151. <Control name="mag" text="放大倍数" />
  152. <Control name="initbright" text="初始亮度设定" />
  153. <Control name="initcontrast" text="初始对比度设定" />
  154. <Control name="autobcTest" text="测试执行" />
  155. <Control name="stop" text="停止执行" />
  156. <Control name="enableautobc" text="自动执行亮度对比度" />
  157. <Control name="everyperiod" text="时间间隔" />
  158. <Control name="everysample" text="每样品" />
  159. <Control name="record" text="确定" />
  160. <Control name="read" text="读取" />
  161. <Control name="write" text="输出" />
  162. </Controls>
  163. </Form>
  164. <!-- OTSIncAReportApp -->
  165. <Form>
  166. <Name>frmReportApp</Name>
  167. <Controls>
  168. <Control name="dpbNew" text="新建" />
  169. <Control name="rbClose" text="关闭"/>
  170. <Control name="dpbOpen" text="打开" />
  171. <Control name="dpbSave" text="保存" />
  172. <Control name="dpbSaveAS" text="另存为" />
  173. <Control name="dpbExport" text="输出" />
  174. <Control name="dpbCopy" text="复制" />
  175. <Control name="dpbCopyAll" text="复制全部" />
  176. <Control name="dpbUnDo" text="取消删除" />
  177. <Control name="dpbReDo" text="重做删除" />
  178. <Control name="ribbonOrbOptionButton1" text="程序管理" />
  179. <Control name="ribbonTab1" text="基本功能" />
  180. <Control name="ribbonPanel3" text="文件" />
  181. <Control name="ribbonPanelOthers" text="其它" />
  182. <Control name="rbSelTool" text="显示图匹配" />
  183. <Control name="rbAllImage" text="全图匹配" />
  184. <Control name="rbWidthImage" text="宽度匹配" />
  185. <Control name="rbChoiceTools" text="选择工具" />
  186. <Control name="rbChoiceParticle" text="颗粒" />
  187. <Control name="rbReMeasure" text="重新测量" />
  188. <Control name="rbReverseSelection" text="反选" />
  189. <Control name="rbCircular" text="圆形" />
  190. <Control name="rbRectangle" text="矩形" />
  191. <Control name="rbCancel" text="取消" />
  192. <Control name="rbOther" text="其它" />
  193. <Control name="rbRecap" text="重新分类" />
  194. <Control name="rbMenu" text="视域菜单" />
  195. <Control name="rbOpen" text="添加" />
  196. <Control name="rbStaff" text="标尺" />
  197. <Control name="ribbonPanel2" text="图形功能" />
  198. <Control name="rbFrame" text="帧图边框" />
  199. <Control name="rbRenew" text="恢复" />
  200. <Control name="rbGB1" text="国标一" />
  201. <Control name="rbGB2" text="国标二" />
  202. <Control name="RSGrayVal" text="灰度值" />
  203. <Control name="mouseMatter" text="鼠标点的物质" />
  204. <Control name="ribbonOrbMenuItem5" text="复制" />
  205. <Control name="rbHelp" text="帮助" />
  206. <Control name="ribbonOrbMenuItem_Extremum" text="极值分析法 " />
  207. <Control name="ribbonOrbMenuItem_InclusionsTraceability" text="外来夹杂物溯源" />
  208. <Control name="ribbonOrbMenuItem_purity" text="钢铁中夹杂物纯洁度分析" />
  209. <Control name="message1" text="现已经有打开的测量结果文件新建项目后将不保存,是否确定新建?" />
  210. <Control name="AnalysisDiagram" text="分析图" />
  211. <Control name="AnalysisDataSheet" text="分析数据表" />
  212. <Control name="AnalysisDataChart" text="分析数据图" />
  213. <Control name="dpbTemplateEditing" text="摸板编辑"/>
  214. </Controls>
  215. </Form>
  216. <Form>
  217. <Name>Category</Name>
  218. <Controls>
  219. <Control name="label1" text="已选择分类:"/>
  220. <Control name="label2" text="数据库分类:"/>
  221. <Control name="button1" text="添加"/>
  222. <Control name="button2" text="删除"/>
  223. <Control name="button3" text="确定"/>
  224. <Control name="button4" text="取消"/>
  225. <Control name="Category" text="分类选择"/>
  226. </Controls>
  227. </Form>
  228. <Form>
  229. <Name>frmPartSizeEditorNew</Name>
  230. <Controls>
  231. <Control name="frmPartSizeEditorNew" text="粒级文件编辑器" />
  232. <Control name="label3" text="路径" />
  233. <Control name="label1" text="粒级名" />
  234. <Control name="label2" text="粒级值" />
  235. <Control name="button4" text="另存"/>
  236. <Control name="button1" text="保存" />
  237. <Control name="button2" text="确定" />
  238. <Control name="button3" text="返回" />
  239. </Controls>
  240. </Form>
  241. <Form>
  242. <Name>frmMeasureRstMgr</Name>
  243. <Controls>
  244. <Control name="RDeleteNode" text="删除测量结果" />
  245. <Control name="AddSample" text="增加样品测量结果" />
  246. <Control name="button1" text="多选数据源" />
  247. <Control name="frmMeasureRstMgr" text="测量结果窗口" />
  248. <Control name="str1" text="Delete " />
  249. <Control name="str2" text=" file?" />
  250. </Controls>
  251. </Form>
  252. <Form>
  253. <Name>frmMultiSourceSelect</Name>
  254. <Controls>
  255. <Control name="button1" text="确定" />
  256. <Control name="button2" text="取消" />
  257. <Control name="frmMultiSourceSelect" text="多数据源选择" />
  258. </Controls>
  259. </Form>
  260. <Form>
  261. <Name>OTSReportDockWindow</Name>
  262. <Controls>
  263. <Control name="SampleImageWindowName" text="分析图" />
  264. <Control name="CTablesWindowName" text="分析数据表 " />
  265. <Control name="CChartssWindowName" text="分析数据图" />
  266. </Controls>
  267. </Form>
  268. <Form>
  269. <Name>frmParticleSizeAdd</Name>
  270. <Controls>
  271. <Control name="label1" text="粒级值" />
  272. <Control name="btn_Sure" text="确定 " />
  273. <Control name="btn_Cancel" text="取消" />
  274. <Control name="frmParticleSizeAdd" text="增加粒级" />
  275. <Control name="str1" text="填写的粒级值最大值不能为空" />
  276. </Controls>
  277. </Form>
  278. <Form>
  279. <Name>frmPartSizeEditor</Name>
  280. <Controls>
  281. <Control name="groupBox1" text="粒级" />
  282. <Control name="btn_Level" text="增加粒级 " />
  283. <Control name="btn_ljedit" text="确定" />
  284. <Control name="btn_ljdqpsf" text="打开" />
  285. <Control name="btn_save" text="另存为" />
  286. <Control name="btn_ljqx" text="取消" />
  287. <Control name="groupBox2" text="粒级名" />
  288. <Control name="GrainSize" text="粒级值" />
  289. <Control name="Delete" text="删除" />
  290. <Control name="frmPartSizeEditor" text="粒级文件" />
  291. </Controls>
  292. </Form>
  293. <Form>
  294. <Name>Triangulation_List</Name>
  295. <Controls>
  296. <Control name="Triangulation_List" text="三元图模板列表" />
  297. <Control name="button1" text="添 加" />
  298. <Control name="button2" text="返 回" />
  299. </Controls>
  300. </Form>
  301. <Form>
  302. <Name>Triangulation_Edit</Name>
  303. <Controls>
  304. <Control name="Triangulation_Edit" text="三元图模板编辑" />
  305. </Controls>
  306. </Form>
  307. <Form>
  308. <Name>frmSampleImage</Name>
  309. <Controls>
  310. <Control name="GeneralParameters" text="常规参数" />
  311. </Controls>
  312. </Form>
  313. <Form>
  314. <Name>frmTables</Name>
  315. <Controls>
  316. <Control name="GeneralParameters" text="常规参数" />
  317. </Controls>
  318. </Form>
  319. <Form>
  320. <Name>frmReportSysConfig</Name>
  321. <Controls>
  322. <Control name="button18" text="增加" />
  323. <Control name="button17" text="修改 " />
  324. <Control name="button16" text="删除" />
  325. <Control name="button15" text="取消" />
  326. <Control name="groupBox3" text="粒级设置" />
  327. <Control name="label16" text="文件" />
  328. <Control name="label4" text="粒级表" />
  329. <Control name="label20" text="文件" />
  330. <Control name="btn_ybcsqx" text="取 消" />
  331. <Control name="btn_ybcsbc" text="确 定" />
  332. <Control name="label7" text="文件夹" />
  333. <Control name="label17" text="三元图" />
  334. <Control name="label5" text="文件夹" />
  335. <Control name="groupBox6" text="三元图模板设置" />
  336. <Control name="groupBox7" text="颗粒分析标准库设置" />
  337. <Control name="groupBox9" text="纳入指数计算" />
  338. <Control name="label22" text="系数" />
  339. <Control name="groupBox2" text="特征/夹杂物指数" />
  340. <Control name="cb_EquivalentCircleDiameter" text="等效圆直径um" />
  341. <Control name="cb_FerretDiameter" text="费雷特直径um" />
  342. <Control name="cb_DiameterRatio" text="长短直径比" />
  343. <Control name="cb_MinDiameter" text="最短直径um" />
  344. <Control name="cb_MaxDiameter" text="最长直径um" />
  345. <Control name="cb_Area" text="面积um" />
  346. <Control name="label2" text="显示类型" />
  347. <Control name="label21" text="文件" />
  348. <Control name="label6" text="文件夹" />
  349. <Control name="groupBox8" text="报告导出模板设置" />
  350. <Control name="frmReportSysConfig" text="程序管理" />
  351. <Control name="cb_PERP" text="正交直径um" />
  352. <Control name="cb_PERI" text="周长um" />
  353. <Control name="cb_INSCR" text="内接圆直径um" />
  354. <Control name="cb_MEAN" text="内接圆平均直径" />
  355. <Control name="cb_ELONG" text="展开长度um" />
  356. <Control name="cb_ASPECT_ELONG" text="展开长宽比" />
  357. <Control name="cb_Orientation" text="朝向角度°" />
  358. <Control name="label1" text="特征/夹杂物指数=特征总面积/检测视场总面积*系数" />
  359. </Controls>
  360. </Form>
  361. <Form>
  362. <Name>frmSTD</Name>
  363. <Controls>
  364. <Control name="groupBox3" text="按指定标准库分类" />
  365. <Control name="label1" text="工 艺" />
  366. <Control name="button2" text="重新分类" />
  367. <Control name="groupBox2" text="按原标准库分类" />
  368. <Control name="button1" text="重新分类" />
  369. <Control name="frmSTD" text="标准库设置窗口" />
  370. <Control name="str1" text="通用处理" />
  371. <Control name="str2" text="钙处理" />
  372. <Control name="str3" text="镁处理" />
  373. <Control name="str4" text="稀土处理" />
  374. <Control name="str5" text="无" />
  375. <Control name="str6" text="是否按原标准库对测量结果重新进行分类?" />
  376. <Control name="str7" text="按原标准库重新分类完成,请重新加载" />
  377. <Control name="str8" text="重新分类" />
  378. <Control name="str9" text="按指定标准库重新分类完成,请重新加载" />
  379. <Control name="str10" text="请先添加测量结果文件,才可以重新分类" />
  380. </Controls>
  381. </Form>
  382. <Form>
  383. <Name>OTSReport_Condition</Name>
  384. <Controls>
  385. <Control name="button1" text="确 定" />
  386. <Control name="button2" text="取 消" />
  387. <Control name="lb_sjlx" text="数据类型" />
  388. <Control name="lb_ccjsff" text="尺寸计算方法" />
  389. <Control name="lb_ljb" text="粒级表" />
  390. <Control name="lb_syxtmb" text="三元图模板" />
  391. <Control name="OTSReport_Condition" text="编辑模板条件" />
  392. </Controls>
  393. </Form>
  394. <Form>
  395. <Name>OTSReport_Export</Name>
  396. <Controls>
  397. <Control name="OTSReport_Export" text="报告程序输出界面" />
  398. <Control name="label3" text="选择模板" />
  399. <Control name="label4" text="数 据 源" />
  400. <Control name="btn_TempDes" text="摸板设置" />
  401. <Control name="button3" text="打开文件" />
  402. <Control name="label2" text="当前导出进度" />
  403. <Control name="button7" text="国标导出" />
  404. <Control name="btn_preview" text="生成预览" />
  405. <Control name="btn_exit" text="退 出" />
  406. <Control name="loading" text="加载:" />
  407. <Control name="measurement_result" text="加载:测量结果信息表……" />
  408. <Control name="measurementResult_fail" text="测量结果信息表加载失败!" />
  409. <Control name="particle_size" text="加载:颗粒尺寸分析表……" />
  410. <Control name="particle_size_fail" text="颗粒尺寸分析表加载失败!" />
  411. <Control name="elemental_analysis" text="加载:元素分析表……" />
  412. <Control name="elemental_analysis_fail" text="元素分析表加载失败!" />
  413. <Control name="inclusion" text="加载:夹杂物面积比表……" />
  414. <Control name="inclusion_fail" text="夹杂物面积比表加载失败!" />
  415. <Control name="inclusion_chart" text="加载:夹杂物面积比图……" />
  416. <Control name="inclusion_chart_fail" text="夹杂物面积加载失败!" />
  417. <Control name="ternary_diagram" text="加载:三元图……" />
  418. <Control name="ternary_diagram_fail" text="三元图加载失败!" />
  419. <Control name="particle_list" text="加载:颗粒列表……" />
  420. <Control name="particle_list_fail" text="颗粒列表加载失败!" />
  421. <Control name="particle_list_chart" text="加载:颗粒帧图列表……" />
  422. <Control name="particle_list_chart_fail" text="颗粒帧图列表加载失败!" />
  423. <Control name="complete" text="-----------------加载完成!--------------------" />
  424. <Control name="language" text="ZH" />
  425. <Control name="library_does_not_match" text="未找到标准库!" />
  426. <Control name="tcleannessa" text="加载VDA19模块" />
  427. <Control name="tcleannessa_fail" text="VDA19模块加载失败!" />
  428. <Control name="dev_bgsj_up" text="报告时间:" />
  429. <Control name="dev_jcjgwj_up" text="测量结果文件:" />
  430. <Control name="dev_ckbz_up" text="参考标准:" />
  431. <Control name="dev_ypsm" text="样品说明" />
  432. <Control name="dev_jcjgwj" text="测量结果名称:" />
  433. <Control name="dev_cljggk" text="测量结果概况" />
  434. <Control name="dev_yxsj" text="运行时间:" />
  435. <Control name="dev_sczs" text="视场总数:" />
  436. <Control name="dev_flfa" text="分类方案:" />
  437. <Control name="dev_ckbz" text="参考标准:" />
  438. <Control name="dev_yjctz" text="已检查特征:" />
  439. <Control name="dev_scmj" text="检测面积:" />
  440. <Control name="dev_bgsj" text="报告时间:" />
  441. <Control name="dev_fdbs" text="测量放大倍数:" />
  442. <Control name="xrlabel_size_iconquestion_class" text="颗粒分类图" />
  443. <Control name="xrlabel_size_iconquestion_subdivision" text="颗粒二级分类图" />
  444. <Control name="xrcellelementarea" text="元素分析表" />
  445. <Control name="xrcellelementarea_details" text="Reported average chemical composition (w %), area(μ m^2)" />
  446. <Control name="xrcell_element_classify" text="分类" />
  447. <Control name="xrcell_element_subdivision" text="二级分类" />
  448. <Control name="xrcell_element_area" text="面积" />
  449. <Control name="xrcellareaofInclusion" text="夹杂物面积比表" />
  450. <Control name="xrcell_inclusion_classify" text="分类" />
  451. <Control name="xrcell_inclusion_subdivision" text="二级分类" />
  452. <Control name="xrcell_inclusion_area" text="面积(μm^2)" />
  453. <Control name="xrcell_inclusion_percentageofinca" text="夹杂物比(%)" />
  454. <Control name="xrcell_inclusion_fieldratio" text="视场占比(%)" />
  455. <Control name="xrLabel_inca_pic_class" text="夹杂物分类比" />
  456. <Control name="xrLabel_inca_pic_subdivision" text="夹杂物细分类比" />
  457. <Control name="dev_dimensiontable_2" text="尺寸计算基于:" />
  458. <Control name="dev_dimensiontable" text="颗粒尺寸分析结果" />
  459. <Control name="dev_classify" text="分类" />
  460. <Control name="dev_subdivision" text="二级分类" />
  461. <Control name="dev_quantity" text="数量" />
  462. <Control name="dev_total" text="总数量" />
  463. <Control name="dev_ternary_diagram" text="三元图" />
  464. <Control name="dev_particle_list" text="颗粒列表" />
  465. <Control name="dev_frame_diagram" text="帧图 " />
  466. <Control name="dev_image" text="图像" />
  467. <Control name="dev_class" text="分类" />
  468. <Control name="dev_page" text="页码" />
  469. <Control name="dev_of" text="/" />
  470. <Control name="tcell_name" text="特征/夹杂物指数" />
  471. <Control name="tcell_notes" text="夹杂物指数=夹杂物面积/扫描面积*比例因子" />
  472. <Control name="xrtablecell1" text="备注" />
  473. <Control name="dev_ypbh_up" text="样品编号:" />
  474. <Control name="xrlabel1" text="颗粒尺寸堆叠图" />
  475. </Controls>
  476. </Form>
  477. <Form>
  478. <Name>OTSReport_Template_INCA</Name>
  479. <Controls>
  480. <Control name="OTSReport_Template_INCA" text="模板设置"/>
  481. <Control name="label39" text="模板设置"/>
  482. <Control name="groupBox9" text="首页设置"/>
  483. <Control name="label3" text="主标题"/>
  484. <Control name="label5" text="副标题"/>
  485. <Control name="label1" text="样品编号"/>
  486. <Control name="label4" text="参考标准"/>
  487. <Control name="groupBox1" text="页脚设置"/>
  488. <Control name="label10" text="页脚文本"/>
  489. <Control name="label8312" text="图标"/>
  490. <Control name="button1217" text="选择图片"/>
  491. <Control name="groupBox2" text="去除信息"/>
  492. <Control name="label11111" text="去除元素信息"/>
  493. <Control name="button5" text="元素选择"/>
  494. <Control name="label_delete_Class" text="去除指定物质分类"/>
  495. <Control name="label_zypxss" text="排序显示"/>
  496. <Control name="groupBox3" text="颗粒筛选"/>
  497. <Control name="ck_klcc_xsmk" text="颗粒尺寸"/>
  498. <Control name="ck_ysfx_xsmk" text="元素分析"/>
  499. <Control name="ck_syxt_xsmk" text="三元图"/>
  500. <Control name="ck_jzwzb_surface" text="夹杂物占比"/>
  501. <Control name="ck_kllb_xsmk" text="颗粒列表"/>
  502. <Control name="ck_kllb_fjzt" text="颗粒附加帧图"/>
  503. <Control name="label14" text="计算方式"/>
  504. <Control name="label15" text="粒级表信息"/>
  505. <Control name="checkBox1" text="大分类图表"/>
  506. <Control name="checkBox2" text="小分类图表"/>
  507. <Control name="label112121" text="颗粒显示数量"/>
  508. <Control name="label2" text="元素选择设置:"/>
  509. <Control name="groupBox_px" text="颗粒显示排序设置"/>
  510. <Control name="ParticleList_1" text="参数1"/>
  511. <Control name="ParticleList_2" text="参数2"/>
  512. <Control name="ParticleList_3" text="参数3"/>
  513. <Control name="groupBox_zt" text="帧图显示排序设置"/>
  514. <Control name="ParticleList_4" text="参数1"/>
  515. <Control name="ParticleList_5" text="参数2"/>
  516. <Control name="label33" text="三元相图模板列表"/>
  517. <Control name="button6" text="保存"/>
  518. <Control name="button1" text="另存"/>
  519. <Control name="whole" text="全部颗粒"/>
  520. <Control name="select" text="选择颗粒"/>
  521. <Control name="standardlibrary" text="当前标准库:"/>
  522. </Controls>
  523. </Form>
  524. <Form>
  525. <Name>OTSReport_Template_CleannessA</Name>
  526. <Controls>
  527. <Control name="OTSReport_Template_CleannessA" text="模板设置"/>
  528. <Control name="label39" text="模板设置"/>
  529. <Control name="groupBox9" text="首页设置"/>
  530. <Control name="label3" text="主标题"/>
  531. <Control name="label5" text="副标题"/>
  532. <Control name="label1" text="样品编号"/>
  533. <Control name="label4" text="参考标准"/>
  534. <Control name="groupBox1" text="页脚设置"/>
  535. <Control name="label10" text="页脚文本"/>
  536. <Control name="label8312" text="图标"/>
  537. <Control name="button1217" text="选择图片"/>
  538. <Control name="groupBox2" text="去除信息"/>
  539. <Control name="label11111" text="去除元素信息"/>
  540. <Control name="button5" text="元素选择"/>
  541. <Control name="label_delete_Class" text="去除指定物质分类"/>
  542. <Control name="label_zypxss" text="排序显示"/>
  543. <Control name="groupBox3" text="模块设定"/>
  544. <Control name="ck_klcc_xsmk" text="颗粒尺寸"/>
  545. <Control name="ck_ysfx_xsmk" text="元素分析"/>
  546. <Control name="ck_kllb_xsmk" text="颗粒列表"/>
  547. <Control name="ck_kllb_fjzt" text="颗粒附加帧图"/>
  548. <Control name="ck_klcc_xsddt" text="颗粒堆叠图"/>
  549. <Control name="checkBox1" text="大分类图表"/>
  550. <Control name="checkBox2" text="小分类图表"/>
  551. <Control name="label112121" text="颗粒显示数量"/>
  552. <Control name="label14" text="计算方式"/>
  553. <Control name="label15" text="粒级表信息"/>
  554. <Control name="label2" text="元素选择设置:"/>
  555. <Control name="groupBox_px" text="颗粒显示排序设置"/>
  556. <Control name="ParticleList_1" text="参数1"/>
  557. <Control name="ParticleList_2" text="参数2"/>
  558. <Control name="ParticleList_3" text="参数3"/>
  559. <Control name="groupBox_zt" text="帧图显示排序设置"/>
  560. <Control name="ParticleList_4" text="参数1"/>
  561. <Control name="ParticleList_5" text="参数2"/>
  562. <Control name="button6" text="保存"/>
  563. <Control name="button1" text="另存"/>
  564. <Control name="whole" text="全部颗粒"/>
  565. <Control name="select" text="选择颗粒"/>
  566. <Control name="no_database" text="未找到数据库!"/>
  567. <Control name="image_opened" text="图片已被打开,请关闭改图片!"/>
  568. <Control name="standardlibrary" text="当前标准库:"/>
  569. </Controls>
  570. </Form>
  571. <Form>
  572. <Name>FileNameSelect</Name>
  573. <Controls>
  574. <Control name="FileNameSelect" text="文件列表" />
  575. <Control name="button1" text="确认选择" />
  576. <Control name="file_name" text="文件名称" />
  577. <Control name="button2" text="取消" />
  578. </Controls>
  579. </Form>
  580. <Form>
  581. <Name>NewFileName</Name>
  582. <Controls>
  583. <Control name="NewFileName" text="文件名称" />
  584. <Control name="button1" text="创建" />
  585. <Control name="name_repeat" text="名称重复!" />
  586. </Controls>
  587. </Form>
  588. <Form>
  589. <Name>OTSReport_criterion</Name>
  590. <Controls>
  591. <Control name="OTSReport_criterion" text="标准选择" />
  592. <Control name="GB_cb_1" text="GB30834方法一" />
  593. <Control name="GB_cb_2" text="GB30834方法二" />
  594. <Control name="button1" text="生成" />
  595. <Control name="gb_dev_ckbz" text="参考标准:" />
  596. <Control name="gb_dev_yjctz" text="已检查特征:" />
  597. <Control name="gb_dev_sczs" text="视场总数:" />
  598. <Control name="gb_dev_scmj" text="总视场面积:" />
  599. <Control name="gb_dev_flfa" text="分类方案:" />
  600. <Control name="gb_dev_yxsj" text="运行时间:" />
  601. <Control name="gb_dev_cljggk" text="测量结果概况" />
  602. <Control name="gb_dev_jcjgwj" text="测量结果名称:" />
  603. <Control name="gb_dev_ypsm" text="样品说明" />
  604. <Control name="gb_bt" text="标准评级" />
  605. <Control name="gb_dev_ym" text="GB30834" />
  606. </Controls>
  607. </Form>
  608. <Form>
  609. <Name>frmCharts</Name>
  610. <Controls>
  611. <Control name="cbCustomTemplate" text="自定义模板" />
  612. <Control name="btnApplyTemplate" text="应用模板" />
  613. <Control name="label3" text="右下点" />
  614. <Control name="label2" text="左下点" />
  615. <Control name="label1" text="顶点" />
  616. <Control name="str1" text="常规参数" />
  617. <Control name="str2" text="颗粒成分图" />
  618. <Control name="str3" text="请将模板中信息选择完整!" />
  619. <Control name="str4" text="模板中有相同选项是否生成!" />
  620. </Controls>
  621. </Form>
  622. <Form>
  623. <Name>Frm_UserProgress</Name>
  624. <Controls>
  625. <Control name="str1" text="当前进度" />
  626. </Controls>
  627. </Form>
  628. <Form>
  629. <Name>Control_XRayTable</Name>
  630. <Controls>
  631. <Control name="str1" text="计数:" />
  632. <Control name="str2" text="物质:" />
  633. </Controls>
  634. </Form>
  635. <Form>
  636. <Name>OTSIncAReportFun</Name>
  637. <Controls>
  638. <Control name="str1" text="分布图准备开始连接SEM电镜" />
  639. <Control name="str2" text="调用连接后状态" />
  640. <Control name="str3" text="获得电镜的ID" />
  641. <Control name="str4" text="电镜是已经连接的状态,准备断开" />
  642. <Control name="str5" text="电镜是已经连接的状态,完成断开后状态" />
  643. <Control name="str6" text="分布图准备开始连接SEM电镜" />
  644. <Control name="str7" text="调用连接后状态" />
  645. <Control name="str8" text="获得电镜的ID" />
  646. <Control name="str9" text="电镜是已经连接的状态,准备断开" />
  647. <Control name="str10" text="电镜是已经连接的状态,完成断开后状态" />
  648. <Control name="str11" text="分布图准备开始移动电镜到" />
  649. <Control name="str12" text="获取原先电镜位置为X" />
  650. <Control name="str13" text="获取电镜位置时状态错误" />
  651. <Control name="str14" text="移动电镜到指定位置" />
  652. <Control name="str15" text="移动电镜时状态错误" />
  653. <Control name="str16" text="分布图准备开始移动电镜到" />
  654. <Control name="str17" text="获取原先电镜位置为X" />
  655. <Control name="str18" text="获取电镜位置时状态错误" />
  656. <Control name="str19" text="移动电镜到指定位置" />
  657. <Control name="str20" text="移动电镜时状态错误" />
  658. <Control name="str21" text="准备关闭电镜连接" />
  659. <Control name="str22" text="准备关闭电镜连接" />
  660. <Control name="str23" text="准备释放DLL" />
  661. <Control name="str24" text="准备关闭电镜连接" />
  662. <Control name="str25" text="准备释放DLL" />
  663. <Control name="str26" text="选择" />
  664. <Control name="str27" text="开始从底层加载数据...." />
  665. <Control name="str28" text="底层返回视域数据数量为0...." />
  666. <Control name="str29" text="开始组建图像视域...." />
  667. <Control name="str30" text="计算标尺...." />
  668. <Control name="str31" text="组建整图数据...." />
  669. <Control name="str32" text="已完成第" />
  670. <Control name="str33" text="个视域数据组建,共" />
  671. <Control name="str34" text="个视域..." />
  672. <Control name="str35" text="转换分辨率..." />
  673. <Control name="str36" text="完成其它工作..." />
  674. <Control name="str37" text="分钟" />
  675. <Control name="str38" text="秒 共(" />
  676. <Control name="str39" text=")毫秒" />
  677. <Control name="str40" text="在对分布图进行条件计算时,传入组件的CGridDataClr为空,请检查!" />
  678. <Control name="str41" text="删除" />
  679. <Control name="str42" text="不显示" />
  680. <Control name="str43" text="在对分布图进行条件计算时,传入组件的CGridDataClr中的列为空GetGridColumnList,请检查!" />
  681. <Control name="str44" text="在对分布图进行条件计算时,传入组件的CGridDataClr中的行为空GetRowList,请检查!" />
  682. <Control name="str45" text="显示" />
  683. <Control name="str46" text="不显示" />
  684. <Control name="str47" text="选择" />
  685. <Control name="str48" text="开始从底层加载数据...." />
  686. <Control name="str49" text="开始组建图像资源...." />
  687. <Control name="str50" text="计算标尺...." />
  688. <Control name="str51" text="组建整图数据...." />
  689. <Control name="str52" text="已完成第" />
  690. <Control name="str53" text="个数据,共" />
  691. <Control name="str54" text="个数据..." />
  692. <Control name="str55" text="从框架向组件传送CGridDataClr对象为空,请检查!" />
  693. <Control name="str56" text="不显示" />
  694. <Control name="str57" text="从框架向组件传送CGridDataClr对象的GetGridColumnList,请检查!" />
  695. <Control name="str58" text="从框架向组件传送CGridDataClr对象的GetRowList为空,请检查!" />
  696. <Control name="str59" text="显示" />
  697. <Control name="partcletype0" text="过小颗粒" />
  698. <Control name="partcletype1" text="过大颗粒" />
  699. <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
  700. <Control name="partcletype4" text="低计数率颗粒" />
  701. <Control name="partcletype6" text="不含分析元素的颗粒" />
  702. <Control name="partcletype7" text="非夹杂物颗粒SiC" />
  703. <Control name="partcletype8" text="非夹杂物颗粒FeO" />
  704. <Control name="partcletype9" text="未识别颗粒" />
  705. <Control name="partcletype10" text="分析颗粒" />
  706. </Controls>
  707. </Form>
  708. <Form>
  709. <Name>ChineseStandardABCDDS</Name>
  710. <Controls>
  711. <Control name="label1" text="A类" />
  712. <Control name="label2" text="B类" />
  713. <Control name="label3" text="C类" />
  714. <Control name="label4" text="D类" />
  715. <Control name="label5" text="DS类" />
  716. <Control name="ToolStripMenuItem1" text="复制整个表" />
  717. <Control name="ToolStripMenuItem2" text="复制选择区域" />
  718. <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
  719. <Control name="toolStripMenuItem4" text="复制整个表" />
  720. <Control name="toolStripMenuItem5" text="复制选择区域" />
  721. <Control name="toolStripMenuItem6" text="恢复至初始状态" />
  722. <Control name="toolStripMenuItem7" text="复制整个表" />
  723. <Control name="toolStripMenuItem8" text="复制选择区域" />
  724. <Control name="toolStripMenuItem9" text="恢复至初始状态" />
  725. <Control name="toolStripMenuItem10" text="复制整个表" />
  726. <Control name="toolStripMenuItem11" text="复制选择区域" />
  727. <Control name="toolStripMenuItem12" text="恢复至初始状态" />
  728. <Control name="toolStripMenuItem13" text="复制整个表" />
  729. <Control name="toolStripMenuItem14" text="复制选择区域" />
  730. <Control name="toolStripMenuItem15" text="恢复至初始状态" />
  731. </Controls>
  732. </Form>
  733. <Form>
  734. <Name>NationalStandardMethodTwo</Name>
  735. <Controls>
  736. <Control name="label1" text="A类" />
  737. <Control name="label2" text="B类" />
  738. <Control name="label3" text="C类" />
  739. <Control name="label4" text="D类" />
  740. <Control name="label5" text="D硫化物类" />
  741. <Control name="label6" text="DS类" />
  742. </Controls>
  743. </Form>
  744. <Form>
  745. <Name>OTSIncAReportGridsFun</Name>
  746. <Controls>
  747. <Control name="str1" text="传入分解表格数据的CGridDataClr对象为空!" />
  748. <Control name="str2" text="加载颗粒列表,开始从底层加载数据...." />
  749. <Control name="str3" text="颗粒名" />
  750. <Control name="str4" text="颗粒图像" />
  751. <Control name="str5" text="颗粒面积um²" />
  752. <Control name="str6" text="最长直径um" />
  753. <Control name="str7" text="最短直径um" />
  754. <Control name="str8" text="长短直径比" />
  755. <Control name="str9" text="等效圆直径um" />
  756. <Control name="str10" text="费雷特直径um" />
  757. <Control name="str11" text="传入分解表格数据的CGridDataClr对象为空!" />
  758. <Control name="str12" text="加载颗粒列表,开始创建表结构列...." />
  759. <Control name="str13" text="加载颗粒列表,开始创建表结构行...." />
  760. <Control name="str14" text="加载颗粒列表,开始生成表数据...." />
  761. <Control name="str15" text="加载颗粒列表,正在获取" />
  762. <Control name="str16" text="名称" />
  763. <Control name="str17" text="图像" />
  764. <Control name="str18" text="数值" />
  765. <Control name="str19" text="传入分解表格数据的CGridDataClr对象为空!" />
  766. <Control name="str20" text="分布图准备开始连接SEM电镜" />
  767. <Control name="str21" text="调用连接后状态" />
  768. <Control name="str22" text="获得电镜的ID" />
  769. <Control name="str23" text="电镜是已经连接的状态,准备断开" />
  770. <Control name="str24" text="电镜是已经连接的状态,完成断开后状态" />
  771. <Control name="str25" text="分布图准备开始移动电镜到" />
  772. <Control name="str26" text="获取原先电镜位置为X" />
  773. <Control name="str27" text="获取电镜位置时状态错误" />
  774. <Control name="str28" text="移动电镜到指定位置" />
  775. <Control name="str29" text="移动电镜时状态错误" />
  776. <Control name="str30" text="准备关闭电镜连接" />
  777. <Control name="str31" text="准备释放DLL" />
  778. <Control name="str32" text="正交直径um" />
  779. <Control name="str33" text="周长um" />
  780. <Control name="str34" text="内接圆直径um" />
  781. <Control name="str35" text="内接圆平均直径um" />
  782. <Control name="str36" text="展开长度um" />
  783. <Control name="str37" text="展开长度比" />
  784. <Control name="str38" text="展开直径比" />
  785. <Control name="str39" text="朝向角度°" />
  786. </Controls>
  787. </Form>
  788. <Form>
  789. <Name>ElementCompositionAvgGrid</Name>
  790. <Controls>
  791. <Control name="ToolStripMenuItem1" text="复制整个表" />
  792. <Control name="ToolStripMenuItem2" text="复制选择区域" />
  793. <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
  794. <Control name="str1" text="序号" />
  795. <Control name="str2" text="颗粒类型" />
  796. <Control name="str3" text="面积μm²" />
  797. <Control name="str4" text="颗粒名" />
  798. <Control name="str5" text="小颗粒μm²" />
  799. <Control name="str6" text="颗粒数" />
  800. <Control name="partcletype0" text="过小颗粒" />
  801. <Control name="partcletype1" text="过大颗粒" />
  802. <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
  803. <Control name="partcletype4" text="低计数率颗粒" />
  804. <Control name="partcletype6" text="不含分析元素的颗粒" />
  805. <Control name="partcletype7" text="非夹杂物颗粒SiC" />
  806. <Control name="partcletype8" text="非夹杂物颗粒FeO" />
  807. <Control name="partcletype9" text="未识别颗粒" />
  808. </Controls>
  809. </Form>
  810. <Form>
  811. <Name>CompositionDistributionGrid</Name>
  812. <Controls>
  813. <Control name="ToolStripMenuItem1" text="复制整个表" />
  814. <Control name="ToolStripMenuItem2" text="复制选择区域" />
  815. <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
  816. <Control name="str1" text="序号" />
  817. <Control name="str2" text="平均um级" />
  818. <Control name="str3" text="平均面积μm²" />
  819. <Control name="str4" text="平均直径μm" />
  820. <Control name="str5" text="最大um级" />
  821. <Control name="str6" text="最大面积μm²" />
  822. <Control name="str7" text="最大直径μm" />
  823. <Control name="str8" text="颗粒名" />
  824. <Control name="str9" text="代表色" />
  825. <Control name="str10" text="颗粒数" />
  826. <Control name="str11" text="小颗粒" />
  827. <Control name="str13" text="面积占比%" />
  828. <Control name="partcletype0" text="过小颗粒" />
  829. <Control name="partcletype1" text="过大颗粒" />
  830. <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
  831. <Control name="partcletype4" text="低计数率颗粒" />
  832. <Control name="partcletype6" text="不含分析元素的颗粒" />
  833. <Control name="partcletype7" text="非夹杂物颗粒SiC" />
  834. <Control name="partcletype8" text="非夹杂物颗粒FeO" />
  835. <Control name="partcletype9" text="未识别颗粒" />
  836. <Control name="str20" text="尖晶石" />
  837. <Control name="str21" text="氧化物" />
  838. <Control name="str22" text="硫氧化物" />
  839. <Control name="str23" text="氮化物" />
  840. <Control name="str24" text="硫化物" />
  841. </Controls>
  842. </Form>
  843. <Form>
  844. <Name>ParticlesSizeGrid</Name>
  845. <Controls>
  846. <Control name="ToolStripMenuItem1" text="复制整个表" />
  847. <Control name="ToolStripMenuItem2" text="复制选择区域" />
  848. <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
  849. <Control name="str1" text="序号" />
  850. <Control name="str8" text="颗粒名" />
  851. <Control name="str9" text="代表色" />
  852. <Control name="str10" text="等效圆直径" />
  853. <Control name="str11" text="总数" />
  854. <Control name="partcletype0" text="过小颗粒" />
  855. <Control name="partcletype1" text="过大颗粒" />
  856. <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
  857. <Control name="partcletype4" text="低计数率颗粒" />
  858. <Control name="partcletype6" text="不含分析元素的颗粒" />
  859. <Control name="partcletype7" text="非夹杂物颗粒SiC" />
  860. <Control name="partcletype8" text="非夹杂物颗粒FeO" />
  861. <Control name="partcletype9" text="未识别颗粒" />
  862. </Controls>
  863. </Form>
  864. <Form>
  865. <Name>ResultGrid</Name>
  866. <Controls>
  867. <Control name="ToolStripMenuItem1" text="复制整个表" />
  868. <Control name="ToolStripMenuItem2" text="复制选择区域" />
  869. <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
  870. <Control name="str1" text="标题" />
  871. <Control name="str8" text="信息" />
  872. <Control name="col1" text="测量结果名称" />
  873. <Control name="col2" text="运行开始" />
  874. <Control name="col3" text="运行结束" />
  875. <Control name="col4" text="运行时间" />
  876. <Control name="col5" text="已检测视场总数" />
  877. <Control name="col6" text="分析标准库" />
  878. <Control name="col7" text="已检测特征" />
  879. <Control name="col8" text="总检测面积(mm" />
  880. <Control name="col9" text="已分析特征总面积 (μm" />
  881. <Control name="col10" text="特征/夹杂物指数" />
  882. <Control name="col11" text="纳入指数/比例因子" />
  883. <Control name="col12" text="放大倍数" />
  884. </Controls>
  885. </Form>
  886. <Form>
  887. <Name>frmReportConditionChoose</Name>
  888. <Controls>
  889. <Control name="sscaptionname1" text="测量结果数据" />
  890. <Control name="sscaptionname2" text="颗粒显示方式" />
  891. <Control name="sscaptionname3" text="测量图显示方式" />
  892. <Control name="sscaptionname4" text="颗粒类型" />
  893. <Control name="sscaptionname5" text="粒级" />
  894. <Control name="sscaptionname6" text="最小颗粒" />
  895. <Control name="sscaptionname7" text="最大颗粒" />
  896. <Control name="sscaptionname8" text="尺寸计算法" />
  897. <Control name="sscaptionname9" text="数据类型" />
  898. <Control name="sscaptionname10" text="数据表类型" />
  899. <Control name="sscaptionname11" text="数据图类型" />
  900. <Control name="sscaptionname12" text="三元图" />
  901. <Control name="sscaptionname13" text="颗粒分类图" />
  902. <Control name="sscaptionname14" text="颗粒分布图" />
  903. <Control name="sscaptionname15" text="颗粒排列图" />
  904. <Control name="sscaptionname16" text="全部" />
  905. <Control name="sscaptionname17" text="分析颗粒" />
  906. <Control name="sscaptionname18" text="自定义" />
  907. <Control name="sscaptionname19" text="全部颗粒类型" />
  908. <Control name="sscaptionname20" text="按类型排列" />
  909. <Control name="sscaptionname21" text="按尺寸排列" />
  910. <Control name="sscaptionname22" text="排列方式" />
  911. <Control name="sscaptionname23" text="全部颗粒" />
  912. <Control name="sscaptionname25" text="测量结果概况" />
  913. <Control name="sscaptionname26" text="全部颗粒信息" />
  914. <Control name="sscaptionname27" text="颗粒成分子分类" />
  915. <Control name="sscaptionname29" text="颗粒尺寸分布" />
  916. <Control name="sscaptionname30" text="平均元素成分" />
  917. <Control name="m_reportname1" text="颗粒成分分类" />
  918. <Control name="m_str_axisy1" text="颗粒数" />
  919. <Control name="str_operatonmodule1" text="常用颗粒分类图" />
  920. <Control name="m_reportname2" text="颗粒成分子分类" />
  921. <Control name="m_str_axisy2" text="颗粒数" />
  922. <Control name="str_operatonmodule2" text="颗粒成份图" />
  923. <Control name="m_reportname4" text="颗粒尺寸分布" />
  924. <Control name="m_str_axisy4" text="颗粒数" />
  925. <Control name="str_operatonmodule4" text="颗粒尺寸分布图" />
  926. <Control name="str_operatonmodule5" text="三元图" />
  927. <Control name="str1" text="参数" />
  928. <Control name="str2" text="常规参数" />
  929. <Control name="BSEOriginal" text="BSE原图" />
  930. <Control name="ClassifiedDisplay" text="分类显示" />
  931. <Control name="OriginalSplicing" text="原图拼接" />
  932. <Control name="OriginalDistribution" text="原图颗粒分布" />
  933. <Control name="ParticleSizeTable" text="粒级表" />
  934. <Control name="ChineseStandard1" text="GB30834方法一(10561)" />
  935. <Control name="ChineseStandard2" text="GB30834方法二" />
  936. <Control name="AmericanStandard" text="美标" />
  937. <Control name="GermanStandard" text="德标 K法" />
  938. <Control name="yb6156" text="德标 K法(YB/T6156-2023)" />
  939. <Control name="CommonClassification" text="颗粒成分分类" />
  940. <Control name="ParticlesAnalyzed" text="已分析颗粒" />
  941. <Control name="SelectParticles" text="选择颗粒" />
  942. <Control name="otherParticles" text="其它颗粒" />
  943. <Control name="MergeParticles" text="拼接颗粒" />
  944. <Control name="DataSourceType" text="数据源类型" />
  945. <Control name="InclusionAreaRatio" text="颗粒面积比" />
  946. <Control name="IncaAreascale" text="颗粒面积比" />
  947. <Control name="InitialRatingLevel" text="起评级别" />
  948. <Control name="classifyGroupDisplay" text="按组显示图" />
  949. </Controls>
  950. </Form>
  951. <Form>
  952. <Name>Control_DrawDistrbutionImageAndBSE</Name>
  953. <Controls>
  954. <Control name="ToolStripMenuItem_selected" text="选中这些颗粒" />
  955. <Control name="ToolStripMenuItem_delete" text="排除这些颗粒" />
  956. <Control name="另存选择颗粒ToolStripMenuItem" text="另存为" />
  957. <Control name="ToolStripMenuItem_movesempoin MenuItem" text="导出原图拼接分类图"/>
  958. <Control name="toolStripMenuItem_DeleteParticles" text="删除颗粒"/>
  959. <Control name="str1" text="开始加载分布图信息" />
  960. <Control name="str2" text="已完成加载" />
  961. <Control name="str3" text="SEM位置:" />
  962. <Control name="str4" text="灰度#:" />
  963. <Control name="str5" text="撤销" />
  964. <Control name="str6" text="选中这些颗粒" />
  965. <Control name="str7" text="视域位置:" />
  966. <Control name="str8" text="复制当前屏幕图像" />
  967. <Control name="str9" text="移动SEM到当前位置" />
  968. <Control name="str10" text="移动SEM到颗粒视域位置" />
  969. <Control name="str11" text="确认分割?" />
  970. <Control name="str12" text="分割数量过多!" />
  971. <Control name="str13" text="分割失败!" />
  972. <Control name="str14" text="没有相交点!" />
  973. <Control name="MouseMove1" text="颗粒SEM位置:" />
  974. <Control name="MouseMove2" text="灰度#" />
  975. <Control name="BSEOriginal" text="BSE原图" />
  976. <Control name="ClassifiedDisplay" text="分类显示" />
  977. <Control name="OriginalSplicing" text="原图拼接" />
  978. <Control name="OriginalDistribution" text="原图颗粒分布" />
  979. </Controls>
  980. </Form>
  981. <Form>
  982. <Name>Control_DrawDistrbutionSortImage</Name>
  983. <Controls>
  984. <Control name="ToolStripMenuItem_selected" text="选择颗粒" />
  985. <Control name="ToolStripMenuItem_delete" text="删除颗粒" />
  986. <Control name="另存选择颗粒ToolStripMenuItem" text="另存为" />
  987. <Control name="ToolStripMenuItem_movesempoint" text="移动SEM到当前位置" />
  988. <Control name="toolStripMenuItem_copyimage" text="复制图像" />
  989. <Control name="str1" text="开始加载排序图信息" />
  990. <Control name="str2" text="已完成加载" />
  991. <Control name="str3" text="SEM位置:" />
  992. <Control name="str4" text="灰度#:" />
  993. <Control name="str5" text="撤销" />
  994. <Control name="str6" text="选择颗粒" />
  995. <Control name="str7" text="视域位置:" />
  996. <Control name="str8" text="灰度#" />
  997. <Control name="str9" text="移动SEM到当前位置" />
  998. <Control name="str10" text="移动SEM到颗粒视域位置" />
  999. <Control name="partcletype9" text="未识别颗粒" />
  1000. <Control name="partcletype10" text="分析颗粒" />
  1001. </Controls>
  1002. </Form>
  1003. <Form>
  1004. <Name>DlgStageMgr</Name>
  1005. <Controls>
  1006. <Control name="button_edit" text="编辑" />
  1007. <Control name="button_New" text="另存" />
  1008. </Controls>
  1009. </Form>
  1010. <!-- OTSIncAMeasureApp -->
  1011. <Form>
  1012. <Name>OTSIncAMeasureAppForm</Name>
  1013. <Controls>
  1014. <Control name="rbOpen" text="打开" />
  1015. <Control name="rbNewDocument" text="新建" />
  1016. <Control name="rbOpenFile" text="打开" />
  1017. <Control name="rbSaveFile" text="保存" />
  1018. <Control name="rvSaveAsFile" text="另存为" />
  1019. <Control name="rbSTDEditor" text="标准库编辑器" />
  1020. <Control name="rbExitApp" text="退出" />
  1021. <Control name="rbSelectDlg" text="程序管理" />
  1022. <Control name="rbTabHome" text="基本功能" />
  1023. <Control name="rbPanelFile" text="项目文件" />
  1024. <Control name="rbPanelSample" text="样品操作及测量区域选择" />
  1025. <Control name="rbSemFunction" text="Sem控制" />
  1026. <Control name="rbAddSample" text="添加" />
  1027. <Control name="rbDeleteSample" text="删除" />
  1028. <Control name="ribInvers" text="反选" />
  1029. <Control name="rbMeasureCircle" text="圆形" />
  1030. <Control name="rbMeasureRectangle" text="矩形" />
  1031. <Control name="ribCircle" text="圆形" />
  1032. <Control name="ribRectangle" text="矩形" />
  1033. <Control name="ribPolygon" text="多边形" />
  1034. <Control name="rbPanelFunction" text="测量控制" />
  1035. <Control name="rbStart" text="开始" />、
  1036. <Control name="rbPause" text="暂停" />
  1037. <Control name="rbStop" text="停止" />
  1038. <Control name="rbCheckParam" text="检测" />
  1039. <Control name="rbPReport" text="查看分析结果" />
  1040. <Control name="rbReport" text="打开报告" />
  1041. <Control name="rbTabView" text="视图功能" />
  1042. <Control name="ribView" text="视图" />
  1043. <Control name="rbRuler" text="标尺" />
  1044. <Control name="rbSmaplePhoto" text="样品孔照片" />
  1045. <Control name="rbSmapleName" text="样品孔名称" />
  1046. <Control name="rbRecover" text="恢复布局" />
  1047. <Control name="TSGrayVal" text="灰度值" />
  1048. <Control name="STSemCoordinate" text="SEM坐标" />
  1049. <Control name="ribbonButton3" text="复位" />
  1050. <Control name="ribbonButton1" text="打开" />
  1051. <Control name="ribbonOrbRecentItem1" text="打开" />
  1052. <Control name="rbConnectHardware" text="连接电镜" />
  1053. <Control name="rbDisconnectHardware" text="断开连接" />
  1054. <Control name="rbAutoBeamOff" text="自动关枪" />
  1055. <Control name="rbinterrupt" text="强制停止" />
  1056. <Control name="m_SamplespaceWindowName" text="样品台" />
  1057. <Control name="m_MeasureStauWindowName" text="帧图测试" />
  1058. <Control name="m_MeasureRetWindowName" text="测量结果" />
  1059. <Control name="m_NoWindowName" text="未知工作窗口" />
  1060. <Control name="rbSTDEdit" text="编辑标准库" />
  1061. <Control name="rbReClassify" text="重新分类" />
  1062. <Control name="rbSysMgrApp" text="系统设置" />
  1063. <Control name="language" text="ZH" />
  1064. <Control name="message1" text="无OTSIncA有效通行证!" />
  1065. <Control name="message2" text="当前文件已修改是否保存?" />
  1066. <Control name="message3" text="错误日志" />
  1067. <Control name="message4" text="是否保存修改信息" />
  1068. <Control name="message5" text="确定删除 " />
  1069. <Control name="message6" text=" 信息 ?" />
  1070. <Control name="message7" text="测量条件正常!" />
  1071. </Controls>
  1072. </Form>
  1073. <Form>
  1074. <Name>MeasureStopMode</Name>
  1075. <Controls>
  1076. <Control name="groupBox1" text="测量结束方式" />
  1077. <Control name="cB_CoverMode" text="1.覆盖测量区域" />
  1078. <Control name="cB_ParticleMode" text="2.终止夹杂物数" />
  1079. <Control name="cB_FieldMode" text="3.终止帧图数" />
  1080. <Control name="cB_TimeMode" text="4.终止时间" />
  1081. <Control name="label1" text="秒" />
  1082. <Control name="cB_AreaMode" text="5.终止测量区域面积" />
  1083. <Control name="label2" text="mm²" />
  1084. </Controls>
  1085. </Form>
  1086. <Form>
  1087. <Name>ProgMgrInfoForm</Name>
  1088. <Controls>
  1089. <Control name="groupBox1" text="样品台" />
  1090. <Control name="label41" text="默认样品台配置编辑" />
  1091. <Control name="label1" text="样品台模板选择" />
  1092. <Control name="groupBox2" text="SEM样品台信息" />
  1093. <Control name="label36" text="最小放大倍数" />
  1094. <Control name="label6" text="y轴行程" />
  1095. <Control name="label5" text="y轴方向" />
  1096. <Control name="label4" text="x轴行程" />
  1097. <Control name="label3" text="x轴方向" />
  1098. <Control name="label2" text="100倍时屏幕尺寸" />
  1099. <Control name="groupBox3" text="图像扫描参数" />
  1100. <Control name="label13" text="扫描图尺寸" />
  1101. <Control name="label12" text="扫描图精度" />
  1102. <Control name="label11" text="取图方式" />
  1103. <Control name="label7" text="测量终止方式" />
  1104. <Control name="groupBox4" text="常规测量参数" />
  1105. <Control name="label42" text="精炼工艺" />
  1106. <Control name="label19" text="用户分析库编辑" />
  1107. <Control name="label15" text="执行开关" />
  1108. <Control name="label14" text="样品名" />
  1109. <Control name="groupBox5" text="图像处理参数" />
  1110. <Control name="label22" text="颗粒灰度范围" />
  1111. <Control name="label21" text="背景灰度范围" />
  1112. <Control name="label25" text="最小" />
  1113. <Control name="label28" text="最大" />
  1114. <Control name="label27" text="最大" />
  1115. <Control name="label26" text="最大" />
  1116. <Control name="label20" text="颗粒尺寸范围" />
  1117. <Control name="lbShape" text="测量区域形状" />
  1118. <Control name="lbArea" text="测量区域面积/mm2" />
  1119. <Control name="groupBox6" text="X-ray参数" />
  1120. <Control name="label17" text="使用系统库开关" />
  1121. <Control name="label30" text="搜索X-ray最低计数" />
  1122. <Control name="label29" text="搜索X-ray精度" />
  1123. <Control name="label32" text="大颗粒X-ray时间" />
  1124. <Control name="label45" text="小颗粒Xray时间" />
  1125. <Control name="label33" text="X-ray计数期望值" />
  1126. <Control name="label47" text="数量限值" />
  1127. <Control name="label49" text="腐蚀膨胀系数" />
  1128. <Control name="label31" text="扫描方式(大颗粒)" />
  1129. <Control name="label8" text="分析阈值(ECD/um)" />
  1130. <Control name="label52" text="是否启用颗粒过滤(Bruker)" />
  1131. <Control name="groupBox7" text="模式选择" />
  1132. <Control name="lbModelSel" text="模式选择" />
  1133. <Control name="lbLaboratoty" text="实验室" />
  1134. <Control name="lbAnalysisReferenceNumber" text="分析参考编号" />
  1135. <Control name="lbCustomerName" text="客户名称" />
  1136. <Control name="lbOperatorName" text="操作员姓名" />
  1137. <Control name="lbSampleDescription" text="样本描述" />
  1138. <Control name="lbComment" text="评论" />
  1139. <Control name="label_AUTOBGREMOVE_TYPE" text="AUTOBGREMOVE_TYPE" />
  1140. <Control name="label_Auto" text="自动" />
  1141. <Control name="label_FrameEndMode" text="帧结束模式" />
  1142. <Control name="groupBox9" text="标准库选择" />
  1143. <Control name="label43" text="背景处理方式" />
  1144. <Control name="label44" text="是否使用X-ray" />
  1145. <Control name="label50" text="图像重叠尺寸(0=不启用)" />
  1146. <Control name="btnok" text="确 定" />
  1147. <Control name="btncancel" text="取 消" />
  1148. <Control name="button1" text="特殊灰度颗粒识别设置" />
  1149. <Control name="ProgMgrInfoForm" text="程序管理" />
  1150. <Control name="message1" text="样品台信息不能为空" />
  1151. <Control name="message2" text="100倍时屏幕尺寸不能为空" />
  1152. <Control name="message3" text="x轴方向不能为空" />
  1153. <Control name="message4" text="x轴行程起不能为空" />
  1154. <Control name="message5" text="y轴行程不能为空" />
  1155. <Control name="message6" text="y轴行程起不能为空" />
  1156. <Control name="message7" text="测量终止方式不能为空" />
  1157. <Control name="message8" text="终止帧图数不能为空" />
  1158. <Control name="message9" text="终止夹杂物数不能为空" />
  1159. <Control name="message10" text="取图方式不能为空" />
  1160. <Control name="message11" text="扫描图精度不能为空" />
  1161. <Control name="message12" text="扫描图尺寸不能为空" />
  1162. <Control name="message13" text="最小放大倍数不可以为空" />
  1163. <Control name="message14" text="颗粒面积范围最小值不能为空" />
  1164. <Control name="message15" text="颗粒面积范围最大值不能为空" />
  1165. <Control name="message16" text="背景灰度范围小值不能为空" />
  1166. <Control name="message17" text="背景灰度范围大值不能为空" />
  1167. <Control name="message18" text="颗粒灰度范围最小值不能为空" />
  1168. <Control name="message19" text="颗粒灰度范围最大值不能为空" />
  1169. <Control name="message20" text="X-ray扫描方式不能为空" />
  1170. <Control name="message21" text="分析X-ray精度不能为空" />
  1171. <Control name="message22" text="分析X-ray计数期望值不能为空" />
  1172. <Control name="message23" text="请输入正确的数值格式" />
  1173. <Control name="message24" text="请输入正确的数值格式" />
  1174. <Control name="message25" text="请输入正确的数值格式" />
  1175. <Control name="message26" text="请输入正确的数值格式" />
  1176. <Control name="message27" text="请输入正确的数值格式" />
  1177. <Control name="message28" text="请输入正确的数值格式" />
  1178. <Control name="message29" text="请输入正确的数值格式" />
  1179. <Control name="message30" text="请输入正确的数值格式" />
  1180. <Control name="message31" text="请输入正确的数值格式" />
  1181. <Control name="message32" text="请输入正确的数值格式" />
  1182. <Control name="message33" text="请输入正确的数值格式" />
  1183. <Control name="message34" text="请输入0-255之间的整数" />
  1184. <Control name="message35" text="请输入正确的数值格式" />
  1185. <Control name="message36" text="请输入0-255之间的整数" />
  1186. <Control name="message37" text="请输入正确的数值格式" />
  1187. <Control name="message38" text="请输入0-255之间的整数" />
  1188. <Control name="message39" text="请输入正确的数值格式" />
  1189. <Control name="message40" text="请输入0-255之间的整数" />
  1190. <Control name="message41" text="请输入正确的数值格式" />
  1191. <Control name="message42" text="请输入正确的数值格式" />
  1192. <Control name="message43" text="请输入正确的数值格式" />
  1193. <Control name="message44" text="输入的数值过大!" />
  1194. <Control name="message45" text="输入的数值过大" />
  1195. <Control name="message46" text="输入的数值过大" />
  1196. <Control name="message47" text="输入的数值过大" />
  1197. <Control name="message48" text="输入的数值过小" />
  1198. <Control name="message49" text="输入的数值过小" />
  1199. <Control name="message50" text="请输入正确的数值范围" />
  1200. <Control name="message51" text="输入的数值过小" />
  1201. <Control name="message52" text="输入的数值过小" />
  1202. <Control name="message53" text="请输入正确的数值范围" />
  1203. <Control name="message54" text="保存样品台时失败!" />
  1204. <Control name="message55" text="请输入正确的数值格式!" />
  1205. <Control name="message56" text="输入的数值过大!" />
  1206. <Control name="message57" text="输入的数值过大!" />
  1207. <Control name="message58" text="输入的数值过大!" />
  1208. <Control name="message59" text="请输入正确的数值格式!" />
  1209. <Control name="message60" text="请输入正确的数值格式!" />
  1210. <Control name="message61" text="是否使用X-ray项不能为空" />
  1211. <Control name="message62" text="输入的测量区域面积不可以为空!" />
  1212. <Control name="message63" text="请输入正确的数值范围!" />
  1213. <Control name="message64" text="请输入正确的数值范围!" />
  1214. <Control name="message65" text="输入的腐蚀膨胀系数不可以为空!" />
  1215. <Control name="message66" text="请输入正奇数或0!" />
  1216. </Controls>
  1217. </Form>
  1218. <Form>
  1219. <Name>OTSSolutionWindow</Name>
  1220. <Controls>
  1221. <Control name="toolStripMenuItem1" text="增加样品测量" />
  1222. <Control name="DeleteNode" text="删除样品" />
  1223. <Control name="SampleParaLock" text="样品参数编辑锁" />
  1224. <Control name="ClearMeasureData" text="清除测量数据" />
  1225. <Control name="OTSSolutionWindow" text="样品窗口" />
  1226. <Control name="m_DefaultSolutionName" text="未加载样品名" />
  1227. <Control name="m_DefaultSampleName" text="样品" />
  1228. <Control name="message1" text="是否确定删除?" />
  1229. </Controls>
  1230. </Form>
  1231. <Form>
  1232. <Name>DlgStageEdit</Name>
  1233. <Controls>
  1234. <Control name="label1" text="样品台名称:" />
  1235. <Control name="label2" text="坐标系统:" />
  1236. <Control name="radioButton_OTS" text="OTS坐标系统" />
  1237. <Control name="radioButton_SEM" text="SEM坐标系统" />
  1238. <Control name="groupBox1" text="样品台边框(微米)" />
  1239. <Control name="label3" text="样品台边框形状:" />
  1240. <Control name="radioButton_BoundaryCircle" text="圆形" />
  1241. <Control name="radioButton_BoundarySquare" text="方形" />
  1242. <Control name="label4" text="中心点坐标:" />
  1243. <Control name="str1" text="样品孔名称" />
  1244. <Control name="str2" text="样品孔形状" />
  1245. <Control name="str3" text="中心x坐标" />
  1246. <Control name="str4" text="中心y坐标" />
  1247. <Control name="str5" text="宽度或直径" />
  1248. <Control name="str6" text="高度或0" />
  1249. <Control name="str7" text="圆形" />
  1250. <Control name="str8" text="方形" />
  1251. <Control name="str9" text="样品台名不能为空字串,不能含\',\'字符!" />
  1252. <Control name="label7" text="宽度:" />
  1253. <Control name="label8" text="高度:" />
  1254. <Control name="groupBox2" text="标样(微米)" />
  1255. <Control name="label14" text="标样形状:" />
  1256. <Control name="radioButton_StandardsampleCircle" text="圆形" />
  1257. <Control name="radioButton_StandardsampleSqare" text="方形" />
  1258. <Control name="label13" text="中心点坐标:" />
  1259. <Control name="label10" text="宽度:" />
  1260. <Control name="label9" text="高度:" />
  1261. <Control name="groupBox3" text="样品孔信息(微米):" />
  1262. <Control name="button_AddHole" text="增加样品孔" />
  1263. <Control name="button_DelHole" text="删除样品孔" />
  1264. <Control name="button_Generate" text="生成" />
  1265. <Control name="button_Coordinate" text="坐标系显示" />
  1266. <Control name="button_Ok" text="保存" />
  1267. </Controls>
  1268. </Form>
  1269. <Form>
  1270. <Name>OTSPropertyWindow</Name>
  1271. <Controls>
  1272. <Control name="OTSPropertyWindow" text="属性窗口" />
  1273. </Controls>
  1274. </Form>
  1275. <Form>
  1276. <Name>MeasureCheckReportInfoWindow</Name>
  1277. <Controls>
  1278. <Control name="label6" text="帧 数:" />
  1279. <Control name="label5" text="颗 粒 数:" />
  1280. <Control name="label4" text="开始时间:" />
  1281. <Control name="label3" text="测量时间:" />
  1282. <Control name="label1" text="测 量 数:" />
  1283. <Control name="label2" text="测量状态:" />
  1284. <Control name="label7" text="结束时间:" />
  1285. <Control name="MeasureCheckReportInfoWindow" text="测量结果" />
  1286. <Control name="str1" text="天" />
  1287. <Control name="str2" text="时" />
  1288. <Control name="str3" text="分" />
  1289. <Control name="str4" text="秒" />
  1290. <Control name="str5" text="0秒" />
  1291. </Controls>
  1292. </Form>
  1293. <Form>
  1294. <Name>MeasureProgressInfoWindow</Name>
  1295. <Controls>
  1296. <Control name="label1" text="样品名" />
  1297. <Control name="label6" text="帧图数" />
  1298. <Control name="label5" text="颗粒数量" />
  1299. <Control name="label4" text="开始时间" />
  1300. <Control name="label3" text="测量时间" />
  1301. <Control name="label2" text="状态" />
  1302. <Control name="str1" text="天" />
  1303. <Control name="str2" text="时" />
  1304. <Control name="str3" text="分" />
  1305. <Control name="str4" text="秒" />
  1306. <Control name="MeasureProgressInfoWindow" text="测量进度" />
  1307. </Controls>
  1308. </Form>
  1309. <Form>
  1310. <Name>OTSMeasureResultWindow</Name>
  1311. <Controls>
  1312. <Control name="label5" text="当前颗粒数量" />
  1313. <Control name="label6" text="帧图数" />
  1314. <Control name="label1" text="样品名" />
  1315. <Control name="label2" text="测量进度" />
  1316. <Control name="label3" text="测量时间" />
  1317. <Control name="label4" text="开始时间" />
  1318. <Control name="TypeId" text="分类" />
  1319. <Control name="strName" text="名称" />
  1320. <Control name="Number" text="数量" />
  1321. <Control name="Area" text="面积" />
  1322. <Control name="str1" text="天" />
  1323. <Control name="str2" text="时" />
  1324. <Control name="str3" text="分" />
  1325. <Control name="str4" text="秒" />
  1326. <Control name="str5" text="设置当前测量列表错误信息:" />
  1327. <Control name="str6" text="颗粒总数:" />
  1328. <Control name="str7" text="面积总数:" />
  1329. <Control name="str8" text="设置当前测量列表错误信息:" />
  1330. <Control name="state1" text="完成" />
  1331. <Control name="state2" text="失败" />
  1332. <Control name="state3" text="停止" />
  1333. </Controls>
  1334. </Form>
  1335. <Form>
  1336. <Name>OTSMeasureStatusWindow</Name>
  1337. <Controls>
  1338. <Control name="AcquireBSEImageMenuItem" text="获取BSE图" />
  1339. <Control name="VisualAdjustingMenu" text="设置BSE图可视化灰度范围" />
  1340. <Control name="toolStripMenuItem1" text="可视化设置特殊颗粒灰度范围" />
  1341. <Control name="ChangeDiffImageShow" text="切换至BSE图" />
  1342. <Control name="ToolStripMenuItem" text="BSE去背景图" />
  1343. <Control name="ToolStripMenuItem2" text="BSE去背景彩色图" />
  1344. <Control name="grayToolStripMenuItem" text="显示BSE灰度曲线图" />
  1345. <Control name="AbandonGrayStripMenuItem" text="显示BSE去背景灰度曲线图" />
  1346. <Control name="MenuItemLineScan" text="线扫描曲线" />
  1347. <Control name="PointScanElementMenuItem" text="单点采集" />
  1348. <Control name="ExportScanInfoMenuItem" text="导出采集信息" />
  1349. <Control name="autobc" text="自动亮度对比度" />
  1350. <Control name="ToolStripMenuItem_batchcapture" text="批量采集" />
  1351. <Control name="message1" text="切换显示至BSE图" />
  1352. <Control name="message2" text="切换显示至BSE图" />
  1353. <Control name="message3" text="数据小于2!" />
  1354. <Control name="message4" text="灰度值:" />
  1355. <Control name="message5" text="切换显示至BSE图" />
  1356. <Control name="message6" text="切换显示至BSE去背景图" />
  1357. <Control name="message7" text="曲线图" />
  1358. <Control name="message8" text="灰度曲线图" />
  1359. <Control name="message9" text="去背景灰度曲线图" />
  1360. <Control name="message10" text="--获取单点扫描数据:元素数量:'" />
  1361. <Control name="message11" text=",元素名称:'" />
  1362. <Control name="message12" text="默认标准库" />
  1363. <Control name="message13" text="用户定义标准库" />
  1364. <Control name="message14" text="系统标准库" />
  1365. <Control name="message15" text="保存图片错误日志:" />
  1366. <Control name="message16" text="元素名称" />
  1367. <Control name="message17" text="原子数" />
  1368. <Control name="message18" text="质量百分比" />
  1369. <Control name="message19" text="摩尔比" />
  1370. <Control name="message20" text="获取图像错误AcquireBSEImage_Click:" />
  1371. <Control name="message21" text="删除单点采集信息与显示标尺信息:" />
  1372. <Control name="message22" text="数据小于2!" />
  1373. <Control name="message23" text="错误" />
  1374. <Control name="message24" text="获取SEM当前位置:" />
  1375. </Controls>
  1376. </Form>
  1377. <Form>
  1378. <Name>OTSSamplespaceWindow</Name>
  1379. <Controls>
  1380. <Control name="CMStrip" text="添加样品" />
  1381. <Control name="AddStage" text="增加样品测量" />
  1382. <Control name="DeleteStage" text="删除样品测量" />
  1383. <Control name="ReadSEMData" text="读取SEM数据" />
  1384. <Control name="SetSemData" text="设定SEM数据" />
  1385. <Control name="SetSEMCenterLocation" text="定位到当前位置" />
  1386. <Control name="DriveSEMToCenterLocation" text="驱动SEM到中心位置" />
  1387. <Control name="DriveSEMToCurrentLocation" text="驱动SEM到当前位置" />
  1388. <Control name="ShootBSEPicture" text="拍摄样品孔BSE照片" />
  1389. <Control name="DeleteBSEPicture" text="删除BSE照片" />
  1390. <Control name="DeleteSampleData" text="初始化样品测量" />
  1391. <Control name="SlopFocusMenuItem" text="斜面焦距" />
  1392. <Control name="message1" text="开始获取帧图信息" />
  1393. <Control name="message2" text="错误日志" />
  1394. <Control name="message3" text="驱动SEM到当前位置:--错误日志信息" />
  1395. <Control name="message4" text="设置SEM到中心:--错误日志信息" />
  1396. <Control name="message5" text="获取SEM当前位置:--错误日志信息" />
  1397. <Control name="message6" text="连接电镜" />
  1398. <Control name="message7" text="按Yes确认删除BSE扫描图" />
  1399. <Control name="message8" text="按Yes确认删除样品孔BSE扫描图" />
  1400. <Control name="message9" text="删除BSE图片错误信息:" />
  1401. <Control name="message10" text="多边形区域是否绘制完成?" />
  1402. <Control name="message11" text="提示" />
  1403. <Control name="message12" text="SEM当前位置已经超出样品台范围,无法移动!" />
  1404. </Controls>
  1405. </Form>
  1406. <Form>
  1407. <Name>CStageManage</Name>
  1408. <Controls>
  1409. <Control name="ShootBSEPicture1" text="拍摄样品孔BSE照片" />
  1410. <Control name="ShootBSEPicture2" text="拍摄测量区域BSE照片" />
  1411. </Controls>
  1412. </Form>
  1413. <Form>
  1414. <Name>RingGdiDataInput</Name>
  1415. <Controls>
  1416. <Control name="RingGdiDataInput" text="环形配置" />
  1417. <Control name="label1" text="请输入环形外径(微米):" />
  1418. <Control name="label2" text="请输入环形宽度(微米):" />
  1419. <Control name="button1" text="确定" />
  1420. <Control name="button2" text="取消" />
  1421. </Controls>
  1422. </Form>
  1423. <Form>
  1424. <Name>SampleGrid</Name>
  1425. <Controls>
  1426. <Control name="m_reportname1" text="颗粒成分分类" />
  1427. <Control name="m_str_axisy1" text="颗粒数" />
  1428. <Control name="str_operatonmodule1" text="常用颗粒分类图" />
  1429. <Control name="m_reportname2" text="颗粒成份" />
  1430. <Control name="m_str_axisy2" text="颗粒数" />
  1431. <Control name="str_operatonmodule2" text="颗粒成份图" />
  1432. <Control name="m_reportname3" text="元素成份" />
  1433. <Control name="m_str_axisy3" text="元素含量" />
  1434. <Control name="str_operatonmodule3" text="元素成份图" />
  1435. <Control name="m_reportname4" text="颗粒尺寸分布" />
  1436. <Control name="m_str_axisy4" text="颗粒数" />
  1437. <Control name="str_operatonmodule4" text="颗粒尺寸分布图" />
  1438. <Control name="str_operatonmodule5" text="三元图" />
  1439. <Control name="str1" text="参数" />
  1440. <Control name="str2" text="常规参数" />
  1441. </Controls>
  1442. </Form>
  1443. <Form>
  1444. <Name>ParticlesGrid</Name>
  1445. <Controls>
  1446. <Control name="ToolStripMenuItem1" text="复制整个表" />
  1447. <Control name="ToolStripMenuItem2" text="复制选择区域" />
  1448. <Control name="toolStripMenuItem4" text="复制图像" />
  1449. <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
  1450. <Control name="ToolStripMenuItem5" text="移动SEM到颗粒视域位置" />
  1451. <Control name="ToolStripMenuItem_selectparticle" text="选择颗粒" />
  1452. <Control name="ToolStripMenuItem_exportimagefile" text="导出图像文件" />
  1453. <Control name="ToolStripMenuItem_exportzoomimagefile" text="导出放大图像文件" />
  1454. <Control name="str1" text="选择颗粒" />
  1455. <Control name="str2" text="已选定" />
  1456. <Control name="str3" text="颗颗粒,请切换到分析图查看!" />
  1457. <Control name="str4" text="序号" />
  1458. <Control name="str5" text="颗粒图像" />
  1459. <Control name="str6" text="颗粒名" />
  1460. <Control name="str7" text="开始加载颗粒列表信息" />
  1461. <Control name="str8" text="颗粒列表,已完成加载" />
  1462. <Control name="str9" text="导出完成,图像共" />
  1463. <Control name="str12" text="加载颗粒列表,开始创建表结构列...." />
  1464. <Control name="str15" text="加载颗粒列表,正在获取" />
  1465. <Control name="str18" text="数值" />
  1466. <Control name="partcletype0" text="过小颗粒" />
  1467. <Control name="partcletype1" text="过大颗粒" />
  1468. <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
  1469. <Control name="partcletype4" text="低计数率颗粒" />
  1470. <Control name="partcletype6" text="不含分析元素的颗粒" />
  1471. <Control name="partcletype7" text="非夹杂物颗粒SiC" />
  1472. <Control name="partcletype8" text="非夹杂物颗粒FeO" />
  1473. <Control name="partcletype9" text="未识别颗粒" />
  1474. </Controls>
  1475. </Form>
  1476. <Form>
  1477. <Name>ParticlesGridDevidePage</Name>
  1478. <Controls>
  1479. <Control name="ToolStripMenuItem1" text="复制整个表" />
  1480. <Control name="ToolStripMenuItem2" text="复制选择区域" />
  1481. <Control name="toolStripMenuItem4" text="复制当前显示列表图像" />
  1482. <Control name="ToolStripMenuItem3" text="修改颗粒分类" />
  1483. <Control name="ToolStripMenuItem5" text="移动SEM到颗粒视域位置" />
  1484. <Control name="ToolStripMenuItem_selectparticle" text="选择颗粒" />
  1485. <Control name="ToolStripMenuItem_exportimagefile" text="导出图像文件" />
  1486. <Control name="ToolStripMenuItem_exportzoomimagefile" text="导出放大图像文件" />
  1487. <Control name="label_Condition" text="条件查询:" />
  1488. <Control name="label_Area" text="面积(μm²)" />
  1489. <Control name="label_Dmax" text="Dmax(μm)" />
  1490. <Control name="label_ParticleName" text="颗粒名称" />
  1491. <Control name="btn_Sel" text="查询" />
  1492. <Control name="btn_ReMeasure" text="二次采集" />
  1493. <Control name="label_order" text="排序方式:" />
  1494. <Control name="label1" text="共" />
  1495. <Control name="label4" text="条记录,每页" />
  1496. <Control name="label2" text="条,共" />
  1497. <Control name="label6" text="页" />
  1498. <Control name="str1" text="选择颗粒" />
  1499. <Control name="str2" text="已选定" />
  1500. <Control name="str3" text="颗颗粒,请切换到分析图查看!" />
  1501. <Control name="str4" text="序号" />
  1502. <Control name="str5" text="颗粒图像" />
  1503. <Control name="str6" text="颗粒名" />
  1504. <Control name="str7" text="开始加载颗粒列表信息" />
  1505. <Control name="str8" text="颗粒列表,已完成加载" />
  1506. <Control name="str9" text="导出完成,图像共" />
  1507. <Control name="str10" text="输入类型错误!" />
  1508. <Control name="str11" text="请注意输入数值的对应大小关系!"/>
  1509. <Control name="str12" text="加载粒度列表并开始创建表结构列" />
  1510. <Control name="str15" text="正在加载颗粒列表,正在获取" />
  1511. <Control name="str18" text="Value" />
  1512. <Control name="partcletype0" text="过小颗粒" />
  1513. <Control name="partcletype1" text="过大颗粒" />
  1514. <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
  1515. <Control name="partcletype4" text="低计数率颗粒" />
  1516. <Control name="partcletype6" text="不含分析元素的颗粒" />
  1517. <Control name="partcletype7" text="非夹杂物颗粒SiC" />
  1518. <Control name="partcletype8" text="非夹杂物颗粒FeO" />
  1519. <Control name="partcletype9" text="未识别颗粒" />
  1520. <Control name="str21" text="面积μm²" />
  1521. <Control name="str22" text="等效圆直径μm" />
  1522. <Control name="str23" text="最长直径μm" />
  1523. <Control name="str24" text="最短直径μm" />
  1524. <Control name="str25" text="长短直径比" />
  1525. <Control name="str26" text="费雷特直径μm" />
  1526. <Control name="str27" text="正交直径μm" />
  1527. <Control name="str28" text="周长μm" />
  1528. <Control name="str29" text="内接圆直径μm" />
  1529. <Control name="str30" text="内接圆平均直径μm!" />
  1530. <Control name="str31" text="展开长度μm" />
  1531. <Control name="str32" text="展开长宽比" />
  1532. <Control name="str33" text="朝向角度°" />
  1533. <Control name="str34" text="硬度" />
  1534. <Control name="str35" text="密度" />
  1535. <Control name="str36" text="导电性" />
  1536. </Controls>
  1537. </Form>
  1538. <Form>
  1539. <Name>OTSSysSTDMgrClass</Name>
  1540. <Controls>
  1541. <Control name="str1" text="无效颗粒" />
  1542. <Control name="str2" text="过小颗粒" />
  1543. <Control name="str3" text="过大颗粒" />
  1544. <Control name="str4" text="亮度不在分析范围内的颗粒" />
  1545. <Control name="str5" text="不进行搜索x-ray分析的颗粒" />
  1546. <Control name="str6" text="低x-ray计数颗粒" />
  1547. <Control name="str7" text="不含分析元素的颗粒" />
  1548. <Control name="str8" text="不进行x-ray分析的颗粒" />
  1549. <Control name="str9" text="非夹杂物颗粒SiC" />
  1550. <Control name="str10" text="非夹杂物颗粒FeO" />
  1551. <Control name="str11" text="未识别颗粒" />
  1552. </Controls>
  1553. </Form>
  1554. <!-- OTSPeriodicTable -->
  1555. <Form>
  1556. <Name>ClassinicationRuleForm</Name>
  1557. <Controls>
  1558. <Control name="btnadd" text="添加" />
  1559. <Control name="label3" text="最大" />
  1560. <Control name="label2" text="灰度最小" />
  1561. <Control name="label4" text="代表色" />
  1562. <Control name="label1" text="形态参数(长宽比)" />
  1563. <Control name="groupBox4" text="颗粒名称" />
  1564. <Control name="btndel" text="删除" />
  1565. <Control name="groupBox5" text="元素信息" />
  1566. <Control name="btnRuleAdd" text="从手动编辑添加+" />
  1567. <Control name="btnAddFromSysSTD" text="从系统库中添加+" />
  1568. <Control name="btn_selectperiodic" text="从元素周期表添加+" />
  1569. <Control name="btn_dbs" text="[点击选择]" />
  1570. <Control name="btn_ok" text="确 定" />
  1571. <Control name="btn_saveas" text="另存为" />
  1572. <Control name="btn_exit" text="退 出" />
  1573. <Control name="btn_open" text="打 开" />
  1574. <Control name="groupBox3" text="标准库名称" />
  1575. <Control name="btn_clear" text="清 空" />
  1576. <Control name="ClassinicationRuleForm" text="颗粒分析标准库编辑窗口" />
  1577. <Control name="str1" text="元素名" />
  1578. <Control name="str2" text="最小" />
  1579. <Control name="str3" text="最大" />
  1580. <Control name="str4" text="修改" />
  1581. <Control name="str5" text="删除" />
  1582. <Control name="str6" text="颗粒编号" />
  1583. <Control name="str7" text="颗粒名称" />
  1584. <Control name="str8" text="颗粒名" />
  1585. <Control name="str9" text="代表色" />
  1586. <Control name="str10" text="形态参数" />
  1587. <Control name="str11" text="灰度最小值" />
  1588. <Control name="str12" text="灰度最大值" />
  1589. <Control name="str13" text="元素编号" />
  1590. <Control name="str14" text="颗粒编号" />
  1591. <Control name="str15" text="元素名" />
  1592. <Control name="str16" text="原子数" />
  1593. <Control name="str17" text="规则" />
  1594. <Control name="str18" text="最小" />
  1595. <Control name="str19" text="最大" />
  1596. <Control name="str20" text="请输入要添加的分类名称" />
  1597. <Control name="str21" text="请选择要删除的颗粒" />
  1598. <Control name="str22" text="是否要删除颗粒?" />
  1599. <Control name="str23" text="灰度区间最小值不能大于最大值" />
  1600. <Control name="str24" text="输入错误" />
  1601. <Control name="str25" text="分类编号" />
  1602. <Control name="str26" text="颗粒分析标准库,保存元素列表失败" />
  1603. <Control name="str27" text="颗粒分析标准库,保存颗粒列表失败" />
  1604. <Control name="str28" text="颗粒分析标准库失败" />
  1605. <Control name="str29" text="请输入标准库名" />
  1606. <Control name="str30" text="请输入分类规则" />
  1607. <Control name="str31" text="请先输入库名" />
  1608. <Control name="str32" text="是否要退出?" />
  1609. <Control name="str33" text="退出" />
  1610. <Control name="str34" text="请选择对应的颗粒再进行编辑!" />
  1611. <Control name="str35" text="请先选择颗粒后再添加元素规则!" />
  1612. <Control name="str36" text="是否要删除全部信息?" />
  1613. </Controls>
  1614. </Form>
  1615. <Form>
  1616. <Name>ClassinicationRuleForm_Edit</Name>
  1617. <Controls>
  1618. <Control name="label1" text="元素名" />
  1619. <Control name="label2" text="最小" />
  1620. <Control name="label3" text="最大" />
  1621. <Control name="btn_ok" text="确定" />
  1622. <Control name="btn_esc" text="取消" />
  1623. <Control name="ClassinicationRuleForm_Edit" text="元素规则" />
  1624. <Control name="str1" text="修改" />
  1625. <Control name="str2" text="[修改元素规则]" />
  1626. <Control name="str3" text="增加" />
  1627. <Control name="str4" text="[增加元素规则]" />
  1628. <Control name="str5" text="填写的元素名不能为空" />
  1629. <Control name="str6" text="填写的元素最小值不能为空" />
  1630. <Control name="str7" text="填写的元素最大值不能为空" />
  1631. <Control name="str8" text="填写的元素名不正确" />
  1632. <Control name="str9" text="填写的元素名不存在请重新填写" />
  1633. <Control name="str10" text="输入的元素已经存在,请重新输入" />
  1634. <Control name="str11" text="元素编号" />
  1635. <Control name="str12" text="颗粒编号" />
  1636. <Control name="str13" text="元素名" />
  1637. <Control name="str14" text="原子数" />
  1638. <Control name="str15" text="规则" />
  1639. <Control name="str16" text="最小" />
  1640. <Control name="str17" text="最大" />
  1641. </Controls>
  1642. </Form>
  1643. <Form>
  1644. <Name>ClassinicationRuleFromSysSTDForm</Name>
  1645. <Controls>
  1646. <Control name="groupBox1" text="系统定义夹杂物列表" />
  1647. <Control name="label1" text="选择标准库" />
  1648. <Control name="groupBox2" text="所包含元素" />
  1649. <Control name="btn_ok" text="添 加" />
  1650. <Control name="btn_exit" text="退 出" />
  1651. <Control name="button1" text="全部添加" />
  1652. <Control name="ClassinicationRuleFromSysSTDForm" text="从系统标准库中添加" />
  1653. <Control name="str1" text="未找到系统标准库文件!" />
  1654. <Control name="str2" text="符号" />
  1655. <Control name="str3" text="元素名" />
  1656. <Control name="str4" text="中文名" />
  1657. <Control name="str5" text="颗粒ID" />
  1658. <Control name="str6" text="起" />
  1659. <Control name="str7" text="止" />
  1660. <Control name="str8" text="原子数" />
  1661. <Control name="str9" text="名称" />
  1662. <Control name="str10" text="编号" />
  1663. <Control name="str11" text="代表色" />
  1664. <Control name="str12" text="宽高比" />
  1665. <Control name="str13" text="元素号" />
  1666. <Control name="str14" text="原子数" />
  1667. <Control name="str15" text="规则" />
  1668. <Control name="str16" text="最小" />
  1669. <Control name="str17" text="最大" />
  1670. </Controls>
  1671. </Form>
  1672. <Form>
  1673. <Name>OTSPeriodicTableForm</Name>
  1674. <Controls>
  1675. <Control name="OTSPeriodicTableForm" text="元素周期表" />
  1676. </Controls>
  1677. </Form>
  1678. <Form>
  1679. <Name>OTSPeriodicTableForm_Small</Name>
  1680. <Controls>
  1681. <Control name="OTSPeriodicTableForm_Small" text="元素周期表" />
  1682. </Controls>
  1683. </Form>
  1684. <Form>
  1685. <Name>OTSMeasureOutputNlog</Name>
  1686. <Controls>
  1687. <Control name="OTSMeasureOutputNlog" text="log输出" />
  1688. <Control name="label1" text="log输出类型:" />
  1689. <Control name="button_clear" text="清屏" />
  1690. <Control name="button_stop" text="停止" />
  1691. </Controls>
  1692. </Form>
  1693. <Form>
  1694. <Name>ToolWindow</Name>
  1695. <Controls>
  1696. <Control name="ToolWindow" text="设置BSE图可视化灰度范围" />
  1697. <Control name="groupBox1" text="设置参数" />
  1698. <Control name="label1" text="灰度范围" />
  1699. <Control name="btnYes" text="确认" />
  1700. <Control name="btnCancel" text="取消" />
  1701. </Controls>
  1702. </Form>
  1703. <Form>
  1704. <Name>DINStandardABCDDS</Name>
  1705. <Controls>
  1706. <Control name="str1" text="夹杂物级别" />
  1707. <Control name="str2" text="结果" />
  1708. <Control name="str3" text="K0指数" />
  1709. </Controls>
  1710. </Form>
  1711. <Form>
  1712. <Name>frmParticleClassification</Name>
  1713. <Controls>
  1714. <Control name="frmParticleClassification" text="设置颗粒分类" />
  1715. <Control name="label1" text="选择类型" />
  1716. <Control name="button1" text="确 定" />
  1717. </Controls>
  1718. </Form>
  1719. <Form>
  1720. <Name>OTSDisplaySampleGrid</Name>
  1721. <Controls>
  1722. <Control name="str1" text="夹杂物级别" />
  1723. <Control name="str2" text="结果" />
  1724. <Control name="str3" text="K0指数" />
  1725. <Control name="str4" text="中文名" />
  1726. <Control name="str5" text="夹杂物ID" />
  1727. <Control name="str6" text="起" />
  1728. <Control name="str7" text="止" />
  1729. <Control name="str8" text="原子数" />
  1730. <Control name="str9" text="名称" />
  1731. <Control name="str10" text="编号" />
  1732. <Control name="str11" text="代表色" />
  1733. <Control name="str12" text="宽高比" />
  1734. <Control name="str13" text="元素号" />
  1735. <Control name="str14" text="原子数" />
  1736. <Control name="str15" text="规则" />
  1737. <Control name="str16" text="最小" />
  1738. <Control name="str17" text="最大" />
  1739. </Controls>
  1740. </Form>
  1741. <Form>
  1742. <Name>SlopFocus</Name>
  1743. <Controls>
  1744. <Control name="SlopFocus" text="是否启用" />
  1745. <Control name="cB_enable" text="是否启用" />
  1746. <Control name="groupBox1" text="第一点" />
  1747. <Control name="label8" text="工作距离" />
  1748. <Control name="bn_FirstPoint" text="获取" />
  1749. <Control name="groupBox2" text="第二点" />
  1750. <Control name="label6" text="工作距离" />
  1751. <Control name="bn_SecondPoint" text="获取" />
  1752. <Control name="groupBox3" text="第三点" />
  1753. <Control name="label1" text="工作距离" />
  1754. <Control name="bn_ThirdPoint" text="获取" />
  1755. <Control name="bn_Cancel" text="取消" />
  1756. <Control name="bn_OK" text="确定" />
  1757. <Control name="str13" text="元素号" />
  1758. <Control name="str14" text="原子数" />
  1759. <Control name="str15" text="规则" />
  1760. <Control name="str16" text="最小" />
  1761. <Control name="str17" text="最大" />
  1762. </Controls>
  1763. </Form>
  1764. <Form>
  1765. <Name>frmReMeasure</Name>
  1766. <Controls>
  1767. <Control name="frmReMeasure" text="二次采集" />
  1768. <Control name="groupBox_img" text="颗粒图片" />
  1769. <Control name="groupBox_param" text="测量参数" />
  1770. <Control name="groupBox_state" text="测量状态" />
  1771. <Control name="BTN_EXPORT" text="导出" />
  1772. <Control name="BTN_NO" text="停止" />
  1773. <Control name="BTN_YES" text="开始采集" />
  1774. <Control name="LB_IMGSCANSPEED" text="图像扫描精度:" />
  1775. <Control name="LB_Outspread" text="图像外扩像数值:" />
  1776. <Control name="LB_SCANTIME" text="能谱扫描时间(毫秒):" />
  1777. <Control name="LB_XRAYSCANMODE" text="颗粒扫描方式:" />
  1778. <Control name="LB_partFun" text="颗粒提取方法:" />
  1779. <Control name="LB_HAND" text="手动处理:" />
  1780. <Control name="str1" text="序号" />
  1781. <Control name="str2" text="连接IPC服务器失败!" />
  1782. <Control name="str3" text="处理完成!" />
  1783. <Control name="str4" text="---开始处理颗粒:" />
  1784. <Control name="str5" text="设置放大倍数:" />
  1785. <Control name="str6" text="设置放大倍数失败!" />
  1786. <Control name="str7" text="移动到颗粒中心位置:" />
  1787. <Control name="str8" text="移动到颗粒中心位置失败!" />
  1788. <Control name="str9" text="重新拍图:" />
  1789. <Control name="str10" text="拍图失败!" />
  1790. <Control name="str11" text="寻找新位置颗粒信息:" />
  1791. <Control name="str12" text="寻找新位置颗粒信息失败!" />
  1792. <Control name="str13" text="采集能谱:" />
  1793. <Control name="str14" text="采集能谱失败!" />
  1794. <Control name="str15" text="能谱分析结果:" />
  1795. <Control name="str16" text="---结束处理颗粒:" />
  1796. <Control name="str17" text="处理完成!" />
  1797. <Control name="str18" text="请在图片上手动选择要处理的颗粒!" />
  1798. <Control name="str19" text="已重测" />
  1799. <Control name="str20" text="颗粒名" />
  1800. <Control name="str21" text="面积μm²" />
  1801. <Control name="str22" text="等效圆直径μm" />
  1802. <Control name="str23" text="最长直径μm" />
  1803. <Control name="str24" text="最短直径μm" />
  1804. <Control name="str25" text="长短直径比" />
  1805. <Control name="str26" text="费雷特直径um" />
  1806. <Control name="str27" text="正交直径um" />
  1807. <Control name="str28" text="周长um" />
  1808. <Control name="str29" text="内接圆直径um" />
  1809. <Control name="str30" text="内接圆平均直径um" />
  1810. <Control name="str31" text="展开长度um" />
  1811. <Control name="str32" text="展开长宽比" />
  1812. <Control name="str33" text="转向角度°" />
  1813. <Control name="str34" text="导电性" />
  1814. <Control name="str35" text="密度" />
  1815. <Control name="str36" text="硬度" />
  1816. <Control name="str37" text="导出成功!" />
  1817. <Control name="str38" text="提示" />
  1818. </Controls>
  1819. </Form>
  1820. <Form>
  1821. <Name>InclusionsTraceability</Name>
  1822. <Controls>
  1823. <Control name="ToolStripMenuItem1" text="复制整个表" />
  1824. <Control name="ToolStripMenuItem2" text="复制选择区域" />
  1825. <Control name="toolStripMenuItem4" text="复制当前显示列表图像" />
  1826. <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
  1827. <Control name="ToolStripMenuItem5" text="移动SEM到颗粒视域位置" />
  1828. <Control name="ToolStripMenuItem_selectparticle" text="选择颗粒" />
  1829. <Control name="ToolStripMenuItem_exportimagefile" text="导出图像文件" />
  1830. <Control name="ToolStripMenuItem_exportzoomimagefile" text="导出放大图像文件" />
  1831. <Control name="label_Condition" text="条件查询:" />
  1832. <Control name="label_Area" text="面积(μm²)" />
  1833. <Control name="label_Dmax" text="Dmax(μm)" />
  1834. <Control name="label_ParticleName" text="颗粒名称" />
  1835. <Control name="btn_Sel" text="查询" />
  1836. <Control name="str1" text="精炼渣" />
  1837. <Control name="str2" text="耐材" />
  1838. <Control name="str3" text="精炼渣+耐材" />
  1839. <Control name="str4" text="序号" />
  1840. <Control name="str5" text="颗粒图像" />
  1841. <Control name="str6" text="颗粒名" />
  1842. <Control name="str7" text="开始加载颗粒列表信息" />
  1843. <Control name="str8" text="颗粒列表,已完成加载" />
  1844. <Control name="str9" text="导出完成,图像共" />
  1845. <Control name="str10" text="输入类型错误!" />
  1846. <Control name="str11" text="请注意输入数值的对应大小关系!"/>
  1847. <Control name="str12" text="加载粒度列表并开始创建表结构列" />
  1848. <Control name="str15" text="正在加载颗粒列表,正在获取" />
  1849. <Control name="str21" text="面积μm²" />
  1850. <Control name="str22" text="等效圆直径μm" />
  1851. <Control name="str23" text="最长卡规直径μm" />
  1852. <Control name="str24" text="最短卡规直径μm" />
  1853. <Control name="str25" text="长短直径比" />
  1854. <Control name="str26" text="费雷特直径μm" />
  1855. <Control name="str27" text="正交直径μm" />
  1856. <Control name="str28" text="周长μm" />
  1857. <Control name="str29" text="内接圆直径μm" />
  1858. <Control name="str30" text="内接圆平均直径μm" />
  1859. <Control name="str31" text="展开长度μm" />
  1860. <Control name="str32" text="展开长宽比" />
  1861. <Control name="str33" text="朝向角度°" />
  1862. <Control name="str34" text="外来夹杂物类型" />
  1863. </Controls>
  1864. </Form>
  1865. </Resource>