123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905 |
- <?xml version="1.0" encoding="utf-8" ?>
- <Resource>
- <!-- OTSSysMgrApp -->
- <Form>
- <Name>OTSSystemManagerForms</Name>
- <Controls>
- <Control name="tabHardwareSet" text="硬件" />
- <Control name="tabLanguage" text="语言" />
- <Control name="tabSysType" text="系统类型设置" />
- <Control name="tabother" text="其它" />
- <Control name="btn_otherconfig" text="其它配置" />
- <Control name="rdb_ch" text="中文[ZH]" />
- <Control name="rdb_en" text="英文[EN]" />
- <Control name="btnEDSTest" text="EDS测试" />
- <Control name="btnSEMTest" text="SEM测试" />
- <Control name="lblHEDSController" text="EDS控制器" />
- <Control name="lblHSEMController" text="SEM控制器" />
- <Control name="label1" text="Bruker版本" />
- <Control name="lblLanguage" text="语言" />
- <Control name="str1" text="请选择要设置的电镜类型!" />
- </Controls>
- </Form>
- <Form>
- <Name>ControllerSettingForm</Name>
- <Controls>
- <Control name="tabXRay" text="X-Ray测试" />
- <Control name="lblCollectionTime" text="采集时间" />
- <Control name="groupBox1" text="图像显示" />
- <Control name="btnDisplayXRay" text="单点采集" />
- <Control name="tabImage" text="BSE测试" />
- <Control name="groupBox2" text="图像显示" />
- <Control name="btnDisplay" text="图像采集" />
- <Control name="lblDwellTime" text="采集时间" />
- <Control name="lblResolution" text="分辨率" />
- <Control name="btnSaveImage" text="保存图片" />
- <Control name="btnAreaRay" text="面积采集" />
- <Control name="btnPointXRay" text="多点采集" />
- <Control name="btnClearData" text="清空" />
- <Control name="btnEanalysis" text="元素分析" />
- <Control name="str1" text="正在采集" />
- <Control name="str2" text="未获取到图像信息!" />
- <Control name="message1" text="请输入要设置的参数!" />
- <Control name="message2" text="连接硬件设备成功!" />
- <Control name="message3" text="连接硬件设备失败!" />
- <Control name="message4" text="设置成功!" />
- <Control name="message5" text="设置失败,请检查硬件是否连接!" />
- <Control name="message6" text="获取成功!" />
- <Control name="message7" text="获取失败,请检查硬件是否连接!" />
- <Control name="message8" text="设置的内容格式有错误!" />
- <Control name="message9" text="未连接硬件设备!" />
- <Control name="message10" text="与硬件设备已断开!" />
- </Controls>
- </Form>
- <Form>
- <Name>SemTestForms</Name>
- <Controls>
- <Control name="BtnConnect" text="连接" />
- <Control name="gbGetMethods" text="获取参数" />
- <Control name="lblGSemScanFieldY" text="扫描矩阵Y轴" />
- <Control name="lblGSemScanFieldX" text="扫描矩阵X轴" />
- <Control name="lblGHT" text="电压" />
- <Control name="lblGScanMode" text="扫描方式" />
- <Control name="lblGKV" text="电压值" />
- <Control name="lblGFWD" text="工作距离" />
- <Control name="lblGContrast" text="对比度" />
- <Control name="lblGBrightness" text="亮度" />
- <Control name="lblGSpotSize" text="光斑尺寸" />
- <Control name="lblGMagnification" text="放大倍数" />
- <Control name="lblGPositionR" text="角度" />
- <Control name="lblGBeamBlank" text="光束挡板" />
- <Control name="lblGPositionY" text="Y轴" />
- <Control name="lblGPositionX" text="X轴" />
- <Control name="btnDone" text="完成" />
- <Control name="btnGPositionXYR" text="获取" />
- <Control name="btnGContrast" text="获取" />
- <Control name="btnGBrightness" text="获取" />
- <Control name="btnGScanMode" text="获取" />
- <Control name="btnGLienTime" text="获取" />
- <Control name="btnGFWD" text="获取" />
- <Control name="btnGMagnification" text="获取" />
- <Control name="btnGBeamBlank" text="获取" />
- <Control name="btnGKV" text="获取" />
- <Control name="btnGSpotSize" text="获取" />
- <Control name="btnGSemScanFieldXY" text="获取" />
- <Control name="gbSetMethods" text="设置参数" />
- <Control name="btnSContrast" text="设置" />
- <Control name="btnScanMode" text="设置" />
- <Control name="btnSLienTime" text="设置" />
- <Control name="btnSFWD" text="设置" />
- <Control name="btnSMagnification" text="设置" />
- <Control name="btnSBeamBlank" text="设置" />
- <Control name="btnSKV" text="设置" />
- <Control name="btnSBrightness" text="设置" />
- <Control name="btnSSpotSize" text="设置" />
- <Control name="btnSPositionXYR" text="设置" />
- <Control name="btnHT" text="获取" />
- <Control name="btnSHT" text="设置" />
- <Control name="btnSSemScanFieldXY" text="设置" />
- <Control name="label15" text="扫描矩阵Y轴" />
- <Control name="label14" text="扫描矩阵X轴" />
- <Control name="label13" text="电压" />
- <Control name="label12" text="扫描方式" />
- <Control name="label11" text="电压值" />
- <Control name="label1" text="X轴" />
- <Control name="label10" text="工作距离" />
- <Control name="label3" text="Y轴" />
- <Control name="label9" text="对比度" />
- <Control name="label4" text="光束挡板" />
- <Control name="label5" text="角度" />
- <Control name="label8" text="亮度" />
- <Control name="label6" text="放大倍数" />
- <Control name="label7" text="光斑尺寸" />
- <Control name="message1" text="请输入要设置的参数!" />
- <Control name="message2" text="连接硬件设备成功!" />
- <Control name="message3" text="连接硬件设备失败!" />
- <Control name="message4" text="设置成功!" />
- <Control name="message5" text="设置失败,请检查硬件是否连接!" />
- <Control name="message6" text="获取成功!" />
- <Control name="message7" text="获取失败,请检查硬件是否连接!" />
- <Control name="message8" text="设置的内容格式有错误!" />
- <Control name="message9" text="未连接硬件设备!" />
- <Control name="message10" text="与硬件设备已断开!" />
- <Control name="str1" text="关闭连接" />
- <Control name="str2" text="连接" />
- </Controls>
- </Form>
- <Form>
- <Name>StageTest</Name>
- <Controls>
- <Control name="message1" text="请输入要设置的参数!" />
- <Control name="message2" text="连接硬件设备成功!" />
- <Control name="message3" text="连接硬件设备失败!" />
- <Control name="message4" text="设置成功!" />
- <Control name="message5" text="设置失败,请检查硬件是否连接!" />
- <Control name="message6" text="获取成功!" />
- <Control name="message7" text="获取失败,请检查硬件是否连接!" />
- <Control name="message8" text="设置的内容格式有错误!" />
- <Control name="message9" text="未连接硬件设备!" />
- <Control name="message10" text="与硬件设备已断开!" />
- <Control name="str1" text="关闭连接" />
- <Control name="str2" text="连接" />
- </Controls>
- </Form>
- <Form>
- <Name>frmBCRegulate</Name>
- <Controls>
- <Control name="frmcaption" text="亮度对比度调节" />
- <Control name="stdpos" text="标样位置" />
- <Control name="dark" text="暗相灰度" />
- <Control name="bright" text="亮相灰度" />
- <Control name="mag" text="放大倍数" />
- <Control name="initbright" text="初始亮度设定" />
- <Control name="initcontrast" text="初始对比度设定" />
- <Control name="autobcTest" text="测试执行" />
- <Control name="stop" text="停止执行" />
- <Control name="enableautobc" text="自动执行亮度对比度" />
- <Control name="everyperiod" text="时间间隔" />
- <Control name="everysample" text="每样品" />
- <Control name="record" text="确定" />
- <Control name="read" text="读取" />
- <Control name="write" text="输出" />
- </Controls>
- </Form>
- <!-- OTSIncAReportApp -->
- <Form>
- <Name>frmReportApp</Name>
- <Controls>
- <Control name="dpbNew" text="新建" />
- <Control name="rbClose" text="关闭"/>
- <Control name="dpbOpen" text="打开" />
- <Control name="dpbSave" text="保存" />
- <Control name="dpbSaveAS" text="另存为" />
- <Control name="dpbExport" text="输出" />
- <Control name="dpbCopy" text="复制" />
- <Control name="dpbCopyAll" text="复制全部" />
- <Control name="dpbUnDo" text="取消删除" />
- <Control name="dpbReDo" text="重做删除" />
- <Control name="ribbonOrbOptionButton1" text="程序管理" />
- <Control name="ribbonTab1" text="基本功能" />
- <Control name="ribbonPanel3" text="文件" />
- <Control name="ribbonPanelOthers" text="其它" />
- <Control name="rbSelTool" text="显示图匹配" />
- <Control name="rbAllImage" text="全图匹配" />
- <Control name="rbWidthImage" text="宽度匹配" />
- <Control name="rbChoiceTools" text="选择工具" />
-
- <Control name="rbChoiceParticle" text="颗粒" />
- <Control name="rbReMeasure" text="重新测量" />
- <Control name="rbReverseSelection" text="反选" />
- <Control name="rbCircular" text="圆形" />
- <Control name="rbRectangle" text="矩形" />
- <Control name="rbCancel" text="取消" />
- <Control name="rbOther" text="其它" />
- <Control name="rbRecap" text="重新分类" />
- <Control name="rbMenu" text="视域菜单" />
- <Control name="rbOpen" text="添加" />
- <Control name="rbStaff" text="标尺" />
- <Control name="ribbonPanel2" text="图形功能" />
- <Control name="rbFrame" text="帧图边框" />
- <Control name="rbRenew" text="恢复" />
- <Control name="rbGB1" text="国标一" />
- <Control name="rbGB2" text="国标二" />
- <Control name="RSGrayVal" text="灰度值" />
- <Control name="mouseMatter" text="鼠标点的物质" />
- <Control name="ribbonOrbMenuItem5" text="复制" />
- <Control name="rbHelp" text="帮助" />
- <Control name="ribbonOrbMenuItem_Extremum" text="极值分析法 " />
- <Control name="ribbonOrbMenuItem_InclusionsTraceability" text="外来夹杂物溯源" />
- <Control name="ribbonOrbMenuItem_purity" text="钢铁中夹杂物纯洁度分析" />
- <Control name="message1" text="现已经有打开的测量结果文件新建项目后将不保存,是否确定新建?" />
- <Control name="AnalysisDiagram" text="分析图" />
- <Control name="AnalysisDataSheet" text="分析数据表" />
- <Control name="AnalysisDataChart" text="分析数据图" />
-
- <Control name="dpbTemplateEditing" text="摸板编辑"/>
- </Controls>
- </Form>
-
- <Form>
- <Name>Category</Name>
- <Controls>
- <Control name="label1" text="已选择分类:"/>
- <Control name="label2" text="数据库分类:"/>
- <Control name="button1" text="添加"/>
- <Control name="button2" text="删除"/>
- <Control name="button3" text="确定"/>
- <Control name="button4" text="取消"/>
- <Control name="Category" text="分类选择"/>
-
- </Controls>
- </Form>
-
-
- <Form>
- <Name>frmPartSizeEditorNew</Name>
- <Controls>
- <Control name="frmPartSizeEditorNew" text="粒级文件编辑器" />
- <Control name="label3" text="路径" />
- <Control name="label1" text="粒级名" />
- <Control name="label2" text="粒级值" />
- <Control name="button4" text="另存"/>
- <Control name="button1" text="保存" />
- <Control name="button2" text="确定" />
- <Control name="button3" text="返回" />
- </Controls>
- </Form>
-
- <Form>
- <Name>frmMeasureRstMgr</Name>
- <Controls>
- <Control name="RDeleteNode" text="删除测量结果" />
- <Control name="AddSample" text="增加样品测量结果" />
- <Control name="button1" text="多选数据源" />
- <Control name="frmMeasureRstMgr" text="测量结果窗口" />
- <Control name="str1" text="Delete " />
- <Control name="str2" text=" file?" />
- </Controls>
- </Form>
- <Form>
- <Name>frmMultiSourceSelect</Name>
- <Controls>
- <Control name="button1" text="确定" />
- <Control name="button2" text="取消" />
- <Control name="frmMultiSourceSelect" text="多数据源选择" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSReportDockWindow</Name>
- <Controls>
- <Control name="SampleImageWindowName" text="分析图" />
- <Control name="CTablesWindowName" text="分析数据表 " />
- <Control name="CChartssWindowName" text="分析数据图" />
- </Controls>
- </Form>
- <Form>
- <Name>frmParticleSizeAdd</Name>
- <Controls>
- <Control name="label1" text="粒级值" />
- <Control name="btn_Sure" text="确定 " />
- <Control name="btn_Cancel" text="取消" />
- <Control name="frmParticleSizeAdd" text="增加粒级" />
- <Control name="str1" text="填写的粒级值最大值不能为空" />
- </Controls>
- </Form>
- <Form>
- <Name>frmPartSizeEditor</Name>
- <Controls>
- <Control name="groupBox1" text="粒级" />
- <Control name="btn_Level" text="增加粒级 " />
- <Control name="btn_ljedit" text="确定" />
- <Control name="btn_ljdqpsf" text="打开" />
- <Control name="btn_save" text="另存为" />
- <Control name="btn_ljqx" text="取消" />
- <Control name="groupBox2" text="粒级名" />
- <Control name="GrainSize" text="粒级值" />
- <Control name="Delete" text="删除" />
- <Control name="frmPartSizeEditor" text="粒级文件" />
- </Controls>
- </Form>
- <Form>
- <Name>Triangulation_List</Name>
- <Controls>
- <Control name="Triangulation_List" text="三元图模板列表" />
- <Control name="button1" text="添 加" />
- <Control name="button2" text="返 回" />
- </Controls>
- </Form>
- <Form>
- <Name>Triangulation_Edit</Name>
- <Controls>
- <Control name="Triangulation_Edit" text="三元图模板编辑" />
- </Controls>
- </Form>
- <Form>
- <Name>frmSampleImage</Name>
- <Controls>
- <Control name="GeneralParameters" text="常规参数" />
- </Controls>
- </Form>
- <Form>
- <Name>frmTables</Name>
- <Controls>
- <Control name="GeneralParameters" text="常规参数" />
- </Controls>
- </Form>
- <Form>
- <Name>frmReportSysConfig</Name>
- <Controls>
- <Control name="button18" text="增加" />
- <Control name="button17" text="修改 " />
- <Control name="button16" text="删除" />
- <Control name="button15" text="取消" />
- <Control name="groupBox3" text="粒级设置" />
- <Control name="label16" text="文件" />
- <Control name="label4" text="粒级表" />
- <Control name="label20" text="文件" />
- <Control name="btn_ybcsqx" text="取 消" />
- <Control name="btn_ybcsbc" text="确 定" />
- <Control name="label7" text="文件夹" />
- <Control name="label17" text="三元图" />
- <Control name="label5" text="文件夹" />
- <Control name="groupBox6" text="三元图模板设置" />
- <Control name="groupBox7" text="颗粒分析标准库设置" />
- <Control name="groupBox9" text="纳入指数计算" />
- <Control name="label22" text="系数" />
- <Control name="groupBox2" text="特征/夹杂物指数" />
- <Control name="cb_EquivalentCircleDiameter" text="等效圆直径um" />
- <Control name="cb_FerretDiameter" text="费雷特直径um" />
- <Control name="cb_DiameterRatio" text="长短直径比" />
- <Control name="cb_MinDiameter" text="最短直径um" />
- <Control name="cb_MaxDiameter" text="最长直径um" />
- <Control name="cb_Area" text="面积um" />
- <Control name="label2" text="显示类型" />
- <Control name="label21" text="文件" />
- <Control name="label6" text="文件夹" />
- <Control name="groupBox8" text="报告导出模板设置" />
- <Control name="frmReportSysConfig" text="程序管理" />
- <Control name="cb_PERP" text="正交直径um" />
- <Control name="cb_PERI" text="周长um" />
- <Control name="cb_INSCR" text="内接圆直径um" />
- <Control name="cb_MEAN" text="内接圆平均直径" />
- <Control name="cb_ELONG" text="展开长度um" />
- <Control name="cb_ASPECT_ELONG" text="展开长宽比" />
- <Control name="cb_Orientation" text="朝向角度°" />
- <Control name="label1" text="特征/夹杂物指数=特征总面积/检测视场总面积*系数" />
- </Controls>
- </Form>
- <Form>
- <Name>frmSTD</Name>
- <Controls>
- <Control name="groupBox3" text="按指定标准库分类" />
- <Control name="label1" text="工 艺" />
- <Control name="button2" text="重新分类" />
- <Control name="groupBox2" text="按原标准库分类" />
- <Control name="button1" text="重新分类" />
- <Control name="frmSTD" text="标准库设置窗口" />
- <Control name="str1" text="通用处理" />
- <Control name="str2" text="钙处理" />
- <Control name="str3" text="镁处理" />
- <Control name="str4" text="稀土处理" />
- <Control name="str5" text="无" />
- <Control name="str6" text="是否按原标准库对测量结果重新进行分类?" />
- <Control name="str7" text="按原标准库重新分类完成,请重新加载" />
- <Control name="str8" text="重新分类" />
- <Control name="str9" text="按指定标准库重新分类完成,请重新加载" />
- <Control name="str10" text="请先添加测量结果文件,才可以重新分类" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSReport_Condition</Name>
- <Controls>
- <Control name="button1" text="确 定" />
- <Control name="button2" text="取 消" />
- <Control name="lb_sjlx" text="数据类型" />
- <Control name="lb_ccjsff" text="尺寸计算方法" />
- <Control name="lb_ljb" text="粒级表" />
- <Control name="lb_syxtmb" text="三元图模板" />
- <Control name="OTSReport_Condition" text="编辑模板条件" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSReport_Export</Name>
- <Controls>
- <Control name="OTSReport_Export" text="报告程序输出界面" />
- <Control name="label3" text="选择模板" />
- <Control name="label4" text="数 据 源" />
- <Control name="btn_TempDes" text="摸板设置" />
- <Control name="button3" text="打开文件" />
- <Control name="label2" text="当前导出进度" />
- <Control name="button7" text="国标导出" />
- <Control name="btn_preview" text="生成预览" />
- <Control name="btn_exit" text="退 出" />
- <Control name="loading" text="加载:" />
- <Control name="measurement_result" text="加载:测量结果信息表……" />
- <Control name="measurementResult_fail" text="测量结果信息表加载失败!" />
- <Control name="particle_size" text="加载:颗粒尺寸分析表……" />
- <Control name="particle_size_fail" text="颗粒尺寸分析表加载失败!" />
- <Control name="elemental_analysis" text="加载:元素分析表……" />
- <Control name="elemental_analysis_fail" text="元素分析表加载失败!" />
- <Control name="inclusion" text="加载:夹杂物面积比表……" />
- <Control name="inclusion_fail" text="夹杂物面积比表加载失败!" />
- <Control name="inclusion_chart" text="加载:夹杂物面积比图……" />
- <Control name="inclusion_chart_fail" text="夹杂物面积加载失败!" />
- <Control name="ternary_diagram" text="加载:三元图……" />
- <Control name="ternary_diagram_fail" text="三元图加载失败!" />
- <Control name="particle_list" text="加载:颗粒列表……" />
- <Control name="particle_list_fail" text="颗粒列表加载失败!" />
- <Control name="particle_list_chart" text="加载:颗粒帧图列表……" />
- <Control name="particle_list_chart_fail" text="颗粒帧图列表加载失败!" />
- <Control name="complete" text="-----------------加载完成!--------------------" />
- <Control name="language" text="ZH" />
- <Control name="library_does_not_match" text="未找到标准库!" />
-
-
- <Control name="tcleannessa" text="加载VDA19模块" />
- <Control name="tcleannessa_fail" text="VDA19模块加载失败!" />
-
- <Control name="dev_bgsj_up" text="报告时间:" />
- <Control name="dev_jcjgwj_up" text="测量结果文件:" />
- <Control name="dev_ckbz_up" text="参考标准:" />
- <Control name="dev_ypsm" text="样品说明" />
- <Control name="dev_jcjgwj" text="测量结果名称:" />
- <Control name="dev_cljggk" text="测量结果概况" />
- <Control name="dev_yxsj" text="运行时间:" />
- <Control name="dev_sczs" text="视场总数:" />
- <Control name="dev_flfa" text="分类方案:" />
- <Control name="dev_ckbz" text="参考标准:" />
- <Control name="dev_yjctz" text="已检查特征:" />
- <Control name="dev_scmj" text="检测面积:" />
- <Control name="dev_bgsj" text="报告时间:" />
- <Control name="dev_fdbs" text="测量放大倍数:" />
- <Control name="xrlabel_size_iconquestion_class" text="颗粒分类图" />
- <Control name="xrlabel_size_iconquestion_subdivision" text="颗粒二级分类图" />
- <Control name="xrcellelementarea" text="元素分析表" />
- <Control name="xrcellelementarea_details" text="Reported average chemical composition (w %), area(μ m^2)" />
- <Control name="xrcell_element_classify" text="分类" />
- <Control name="xrcell_element_subdivision" text="二级分类" />
- <Control name="xrcell_element_area" text="面积" />
- <Control name="xrcellareaofInclusion" text="夹杂物面积比表" />
- <Control name="xrcell_inclusion_classify" text="分类" />
- <Control name="xrcell_inclusion_subdivision" text="二级分类" />
- <Control name="xrcell_inclusion_area" text="面积(μm^2)" />
- <Control name="xrcell_inclusion_percentageofinca" text="夹杂物比(%)" />
- <Control name="xrcell_inclusion_fieldratio" text="视场占比(%)" />
- <Control name="xrLabel_inca_pic_class" text="夹杂物分类比" />
- <Control name="xrLabel_inca_pic_subdivision" text="夹杂物细分类比" />
- <Control name="dev_dimensiontable_2" text="尺寸计算基于:" />
- <Control name="dev_dimensiontable" text="颗粒尺寸分析结果" />
- <Control name="dev_classify" text="分类" />
- <Control name="dev_subdivision" text="二级分类" />
- <Control name="dev_quantity" text="数量" />
- <Control name="dev_total" text="总数量" />
- <Control name="dev_ternary_diagram" text="三元图" />
- <Control name="dev_particle_list" text="颗粒列表" />
- <Control name="dev_frame_diagram" text="帧图 " />
- <Control name="dev_image" text="图像" />
- <Control name="dev_class" text="分类" />
- <Control name="dev_page" text="页码" />
- <Control name="dev_of" text="/" />
- <Control name="tcell_name" text="特征/夹杂物指数" />
- <Control name="tcell_notes" text="夹杂物指数=夹杂物面积/扫描面积*比例因子" />
- <Control name="xrtablecell1" text="备注" />
- <Control name="dev_ypbh_up" text="样品编号:" />
- <Control name="xrlabel1" text="颗粒尺寸堆叠图" />
-
- </Controls>
- </Form>
-
- <Form>
- <Name>OTSReport_Template_INCA</Name>
- <Controls>
- <Control name="OTSReport_Template_INCA" text="模板设置"/>
- <Control name="label39" text="模板设置"/>
- <Control name="groupBox9" text="首页设置"/>
- <Control name="label3" text="主标题"/>
- <Control name="label5" text="副标题"/>
- <Control name="label1" text="样品编号"/>
- <Control name="label4" text="参考标准"/>
- <Control name="groupBox1" text="页脚设置"/>
- <Control name="label10" text="页脚文本"/>
- <Control name="label8312" text="图标"/>
- <Control name="button1217" text="选择图片"/>
- <Control name="groupBox2" text="去除信息"/>
- <Control name="label11111" text="去除元素信息"/>
- <Control name="button5" text="元素选择"/>
- <Control name="label_delete_Class" text="去除指定物质分类"/>
- <Control name="label_zypxss" text="排序显示"/>
-
- <Control name="groupBox3" text="颗粒筛选"/>
- <Control name="ck_klcc_xsmk" text="颗粒尺寸"/>
- <Control name="ck_ysfx_xsmk" text="元素分析"/>
- <Control name="ck_syxt_xsmk" text="三元图"/>
- <Control name="ck_jzwzb_surface" text="夹杂物占比"/>
- <Control name="ck_kllb_xsmk" text="颗粒列表"/>
- <Control name="ck_kllb_fjzt" text="颗粒附加帧图"/>
- <Control name="label14" text="计算方式"/>
- <Control name="label15" text="粒级表信息"/>
- <Control name="checkBox1" text="大分类图表"/>
- <Control name="checkBox2" text="小分类图表"/>
- <Control name="label112121" text="颗粒显示数量"/>
- <Control name="label2" text="元素选择设置:"/>
- <Control name="groupBox_px" text="颗粒显示排序设置"/>
- <Control name="ParticleList_1" text="参数1"/>
- <Control name="ParticleList_2" text="参数2"/>
- <Control name="ParticleList_3" text="参数3"/>
- <Control name="groupBox_zt" text="帧图显示排序设置"/>
- <Control name="ParticleList_4" text="参数1"/>
- <Control name="ParticleList_5" text="参数2"/>
- <Control name="label33" text="三元相图模板列表"/>
- <Control name="button6" text="保存"/>
- <Control name="button1" text="另存"/>
- <Control name="whole" text="全部颗粒"/>
- <Control name="select" text="选择颗粒"/>
-
-
-
- <Control name="standardlibrary" text="当前标准库:"/>
- </Controls>
- </Form>
- <Form>
- <Name>OTSReport_Template_CleannessA</Name>
- <Controls>
- <Control name="OTSReport_Template_CleannessA" text="模板设置"/>
- <Control name="label39" text="模板设置"/>
- <Control name="groupBox9" text="首页设置"/>
- <Control name="label3" text="主标题"/>
- <Control name="label5" text="副标题"/>
- <Control name="label1" text="样品编号"/>
- <Control name="label4" text="参考标准"/>
- <Control name="groupBox1" text="页脚设置"/>
- <Control name="label10" text="页脚文本"/>
- <Control name="label8312" text="图标"/>
- <Control name="button1217" text="选择图片"/>
- <Control name="groupBox2" text="去除信息"/>
- <Control name="label11111" text="去除元素信息"/>
- <Control name="button5" text="元素选择"/>
- <Control name="label_delete_Class" text="去除指定物质分类"/>
- <Control name="label_zypxss" text="排序显示"/>
-
- <Control name="groupBox3" text="模块设定"/>
- <Control name="ck_klcc_xsmk" text="颗粒尺寸"/>
- <Control name="ck_ysfx_xsmk" text="元素分析"/>
- <Control name="ck_kllb_xsmk" text="颗粒列表"/>
- <Control name="ck_kllb_fjzt" text="颗粒附加帧图"/>
- <Control name="ck_klcc_xsddt" text="颗粒堆叠图"/>
- <Control name="checkBox1" text="大分类图表"/>
- <Control name="checkBox2" text="小分类图表"/>
- <Control name="label112121" text="颗粒显示数量"/>
- <Control name="label14" text="计算方式"/>
- <Control name="label15" text="粒级表信息"/>
- <Control name="label2" text="元素选择设置:"/>
- <Control name="groupBox_px" text="颗粒显示排序设置"/>
- <Control name="ParticleList_1" text="参数1"/>
- <Control name="ParticleList_2" text="参数2"/>
- <Control name="ParticleList_3" text="参数3"/>
- <Control name="groupBox_zt" text="帧图显示排序设置"/>
- <Control name="ParticleList_4" text="参数1"/>
- <Control name="ParticleList_5" text="参数2"/>
- <Control name="button6" text="保存"/>
- <Control name="button1" text="另存"/>
- <Control name="whole" text="全部颗粒"/>
- <Control name="select" text="选择颗粒"/>
-
- <Control name="no_database" text="未找到数据库!"/>
- <Control name="image_opened" text="图片已被打开,请关闭改图片!"/>
-
-
-
- <Control name="standardlibrary" text="当前标准库:"/>
- </Controls>
- </Form>
-
- <Form>
- <Name>FileNameSelect</Name>
- <Controls>
- <Control name="FileNameSelect" text="文件列表" />
- <Control name="button1" text="确认选择" />
- <Control name="file_name" text="文件名称" />
- <Control name="button2" text="取消" />
- </Controls>
-
- </Form>
-
- <Form>
- <Name>NewFileName</Name>
- <Controls>
- <Control name="NewFileName" text="文件名称" />
- <Control name="button1" text="创建" />
- <Control name="name_repeat" text="名称重复!" />
-
- </Controls>
- </Form>
-
- <Form>
- <Name>OTSReport_criterion</Name>
- <Controls>
- <Control name="OTSReport_criterion" text="标准选择" />
- <Control name="GB_cb_1" text="GB30834方法一" />
- <Control name="GB_cb_2" text="GB30834方法二" />
- <Control name="button1" text="生成" />
-
-
- <Control name="gb_dev_ckbz" text="参考标准:" />
- <Control name="gb_dev_yjctz" text="已检查特征:" />
- <Control name="gb_dev_sczs" text="视场总数:" />
- <Control name="gb_dev_scmj" text="总视场面积:" />
- <Control name="gb_dev_flfa" text="分类方案:" />
- <Control name="gb_dev_yxsj" text="运行时间:" />
- <Control name="gb_dev_cljggk" text="测量结果概况" />
- <Control name="gb_dev_jcjgwj" text="测量结果名称:" />
- <Control name="gb_dev_ypsm" text="样品说明" />
- <Control name="gb_bt" text="标准评级" />
- <Control name="gb_dev_ym" text="GB30834" />
- </Controls>
- </Form>
-
-
- <Form>
- <Name>frmCharts</Name>
- <Controls>
- <Control name="cbCustomTemplate" text="自定义模板" />
- <Control name="btnApplyTemplate" text="应用模板" />
- <Control name="label3" text="右下点" />
- <Control name="label2" text="左下点" />
- <Control name="label1" text="顶点" />
- <Control name="str1" text="常规参数" />
- <Control name="str2" text="颗粒成分图" />
- <Control name="str3" text="请将模板中信息选择完整!" />
- <Control name="str4" text="模板中有相同选项是否生成!" />
- </Controls>
- </Form>
- <Form>
- <Name>Frm_UserProgress</Name>
- <Controls>
- <Control name="str1" text="当前进度" />
- </Controls>
- </Form>
- <Form>
- <Name>Control_XRayTable</Name>
- <Controls>
- <Control name="str1" text="计数:" />
- <Control name="str2" text="物质:" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSIncAReportFun</Name>
- <Controls>
- <Control name="str1" text="分布图准备开始连接SEM电镜" />
- <Control name="str2" text="调用连接后状态" />
- <Control name="str3" text="获得电镜的ID" />
- <Control name="str4" text="电镜是已经连接的状态,准备断开" />
- <Control name="str5" text="电镜是已经连接的状态,完成断开后状态" />
- <Control name="str6" text="分布图准备开始连接SEM电镜" />
- <Control name="str7" text="调用连接后状态" />
- <Control name="str8" text="获得电镜的ID" />
- <Control name="str9" text="电镜是已经连接的状态,准备断开" />
- <Control name="str10" text="电镜是已经连接的状态,完成断开后状态" />
- <Control name="str11" text="分布图准备开始移动电镜到" />
- <Control name="str12" text="获取原先电镜位置为X" />
- <Control name="str13" text="获取电镜位置时状态错误" />
- <Control name="str14" text="移动电镜到指定位置" />
- <Control name="str15" text="移动电镜时状态错误" />
- <Control name="str16" text="分布图准备开始移动电镜到" />
- <Control name="str17" text="获取原先电镜位置为X" />
- <Control name="str18" text="获取电镜位置时状态错误" />
- <Control name="str19" text="移动电镜到指定位置" />
- <Control name="str20" text="移动电镜时状态错误" />
- <Control name="str21" text="准备关闭电镜连接" />
- <Control name="str22" text="准备关闭电镜连接" />
- <Control name="str23" text="准备释放DLL" />
- <Control name="str24" text="准备关闭电镜连接" />
- <Control name="str25" text="准备释放DLL" />
- <Control name="str26" text="选择" />
- <Control name="str27" text="开始从底层加载数据...." />
- <Control name="str28" text="底层返回视域数据数量为0...." />
- <Control name="str29" text="开始组建图像视域...." />
- <Control name="str30" text="计算标尺...." />
- <Control name="str31" text="组建整图数据...." />
- <Control name="str32" text="已完成第" />
- <Control name="str33" text="个视域数据组建,共" />
- <Control name="str34" text="个视域..." />
- <Control name="str35" text="转换分辨率..." />
- <Control name="str36" text="完成其它工作..." />
- <Control name="str37" text="分钟" />
- <Control name="str38" text="秒 共(" />
- <Control name="str39" text=")毫秒" />
- <Control name="str40" text="在对分布图进行条件计算时,传入组件的CGridDataClr为空,请检查!" />
- <Control name="str41" text="删除" />
- <Control name="str42" text="不显示" />
- <Control name="str43" text="在对分布图进行条件计算时,传入组件的CGridDataClr中的列为空GetGridColumnList,请检查!" />
- <Control name="str44" text="在对分布图进行条件计算时,传入组件的CGridDataClr中的行为空GetRowList,请检查!" />
- <Control name="str45" text="显示" />
- <Control name="str46" text="不显示" />
- <Control name="str47" text="选择" />
- <Control name="str48" text="开始从底层加载数据...." />
- <Control name="str49" text="开始组建图像资源...." />
- <Control name="str50" text="计算标尺...." />
- <Control name="str51" text="组建整图数据...." />
- <Control name="str52" text="已完成第" />
- <Control name="str53" text="个数据,共" />
- <Control name="str54" text="个数据..." />
- <Control name="str55" text="从框架向组件传送CGridDataClr对象为空,请检查!" />
- <Control name="str56" text="不显示" />
- <Control name="str57" text="从框架向组件传送CGridDataClr对象的GetGridColumnList,请检查!" />
- <Control name="str58" text="从框架向组件传送CGridDataClr对象的GetRowList为空,请检查!" />
- <Control name="str59" text="显示" />
- <Control name="partcletype0" text="过小颗粒" />
- <Control name="partcletype1" text="过大颗粒" />
- <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
- <Control name="partcletype4" text="低计数率颗粒" />
- <Control name="partcletype6" text="不含分析元素的颗粒" />
- <Control name="partcletype7" text="非夹杂物颗粒SiC" />
- <Control name="partcletype8" text="非夹杂物颗粒FeO" />
- <Control name="partcletype9" text="未识别颗粒" />
- <Control name="partcletype10" text="分析颗粒" />
- </Controls>
- </Form>
- <Form>
- <Name>ChineseStandardABCDDS</Name>
- <Controls>
- <Control name="label1" text="A类" />
- <Control name="label2" text="B类" />
- <Control name="label3" text="C类" />
- <Control name="label4" text="D类" />
- <Control name="label5" text="DS类" />
- <Control name="ToolStripMenuItem1" text="复制整个表" />
- <Control name="ToolStripMenuItem2" text="复制选择区域" />
- <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
- <Control name="toolStripMenuItem4" text="复制整个表" />
- <Control name="toolStripMenuItem5" text="复制选择区域" />
- <Control name="toolStripMenuItem6" text="恢复至初始状态" />
- <Control name="toolStripMenuItem7" text="复制整个表" />
- <Control name="toolStripMenuItem8" text="复制选择区域" />
- <Control name="toolStripMenuItem9" text="恢复至初始状态" />
- <Control name="toolStripMenuItem10" text="复制整个表" />
- <Control name="toolStripMenuItem11" text="复制选择区域" />
- <Control name="toolStripMenuItem12" text="恢复至初始状态" />
- <Control name="toolStripMenuItem13" text="复制整个表" />
- <Control name="toolStripMenuItem14" text="复制选择区域" />
- <Control name="toolStripMenuItem15" text="恢复至初始状态" />
- </Controls>
- </Form>
- <Form>
- <Name>NationalStandardMethodTwo</Name>
- <Controls>
- <Control name="label1" text="A类" />
- <Control name="label2" text="B类" />
- <Control name="label3" text="C类" />
- <Control name="label4" text="D类" />
- <Control name="label5" text="D硫化物类" />
- <Control name="label6" text="DS类" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSIncAReportGridsFun</Name>
- <Controls>
- <Control name="str1" text="传入分解表格数据的CGridDataClr对象为空!" />
- <Control name="str2" text="加载颗粒列表,开始从底层加载数据...." />
- <Control name="str3" text="颗粒名" />
- <Control name="str4" text="颗粒图像" />
- <Control name="str5" text="颗粒面积um²" />
- <Control name="str6" text="最长直径um" />
- <Control name="str7" text="最短直径um" />
- <Control name="str8" text="长短直径比" />
- <Control name="str9" text="等效圆直径um" />
- <Control name="str10" text="费雷特直径um" />
- <Control name="str11" text="传入分解表格数据的CGridDataClr对象为空!" />
- <Control name="str12" text="加载颗粒列表,开始创建表结构列...." />
- <Control name="str13" text="加载颗粒列表,开始创建表结构行...." />
- <Control name="str14" text="加载颗粒列表,开始生成表数据...." />
- <Control name="str15" text="加载颗粒列表,正在获取" />
- <Control name="str16" text="名称" />
- <Control name="str17" text="图像" />
- <Control name="str18" text="数值" />
- <Control name="str19" text="传入分解表格数据的CGridDataClr对象为空!" />
- <Control name="str20" text="分布图准备开始连接SEM电镜" />
- <Control name="str21" text="调用连接后状态" />
- <Control name="str22" text="获得电镜的ID" />
- <Control name="str23" text="电镜是已经连接的状态,准备断开" />
- <Control name="str24" text="电镜是已经连接的状态,完成断开后状态" />
- <Control name="str25" text="分布图准备开始移动电镜到" />
- <Control name="str26" text="获取原先电镜位置为X" />
- <Control name="str27" text="获取电镜位置时状态错误" />
- <Control name="str28" text="移动电镜到指定位置" />
- <Control name="str29" text="移动电镜时状态错误" />
- <Control name="str30" text="准备关闭电镜连接" />
- <Control name="str31" text="准备释放DLL" />
- <Control name="str32" text="正交直径um" />
- <Control name="str33" text="周长um" />
- <Control name="str34" text="内接圆直径um" />
- <Control name="str35" text="内接圆平均直径um" />
- <Control name="str36" text="展开长度um" />
- <Control name="str37" text="展开长度比" />
- <Control name="str38" text="展开直径比" />
- <Control name="str39" text="朝向角度°" />
- </Controls>
- </Form>
- <Form>
- <Name>ElementCompositionAvgGrid</Name>
- <Controls>
- <Control name="ToolStripMenuItem1" text="复制整个表" />
- <Control name="ToolStripMenuItem2" text="复制选择区域" />
- <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
- <Control name="str1" text="序号" />
- <Control name="str2" text="颗粒类型" />
- <Control name="str3" text="面积μm²" />
- <Control name="str4" text="颗粒名" />
- <Control name="str5" text="小颗粒μm²" />
- <Control name="str6" text="颗粒数" />
- <Control name="partcletype0" text="过小颗粒" />
- <Control name="partcletype1" text="过大颗粒" />
- <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
- <Control name="partcletype4" text="低计数率颗粒" />
- <Control name="partcletype6" text="不含分析元素的颗粒" />
- <Control name="partcletype7" text="非夹杂物颗粒SiC" />
- <Control name="partcletype8" text="非夹杂物颗粒FeO" />
- <Control name="partcletype9" text="未识别颗粒" />
- </Controls>
- </Form>
- <Form>
- <Name>CompositionDistributionGrid</Name>
- <Controls>
- <Control name="ToolStripMenuItem1" text="复制整个表" />
- <Control name="ToolStripMenuItem2" text="复制选择区域" />
- <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
- <Control name="str1" text="序号" />
- <Control name="str2" text="平均um级" />
- <Control name="str3" text="平均面积μm²" />
- <Control name="str4" text="平均直径μm" />
- <Control name="str5" text="最大um级" />
- <Control name="str6" text="最大面积μm²" />
- <Control name="str7" text="最大直径μm" />
- <Control name="str8" text="颗粒名" />
- <Control name="str9" text="代表色" />
- <Control name="str10" text="颗粒数" />
- <Control name="str11" text="小颗粒" />
- <Control name="str13" text="面积占比%" />
- <Control name="partcletype0" text="过小颗粒" />
- <Control name="partcletype1" text="过大颗粒" />
- <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
- <Control name="partcletype4" text="低计数率颗粒" />
- <Control name="partcletype6" text="不含分析元素的颗粒" />
- <Control name="partcletype7" text="非夹杂物颗粒SiC" />
- <Control name="partcletype8" text="非夹杂物颗粒FeO" />
- <Control name="partcletype9" text="未识别颗粒" />
- <Control name="str20" text="尖晶石" />
- <Control name="str21" text="氧化物" />
- <Control name="str22" text="硫氧化物" />
- <Control name="str23" text="氮化物" />
- <Control name="str24" text="硫化物" />
- </Controls>
- </Form>
- <Form>
- <Name>ParticlesSizeGrid</Name>
- <Controls>
- <Control name="ToolStripMenuItem1" text="复制整个表" />
- <Control name="ToolStripMenuItem2" text="复制选择区域" />
- <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
- <Control name="str1" text="序号" />
- <Control name="str8" text="颗粒名" />
- <Control name="str9" text="代表色" />
- <Control name="str10" text="等效圆直径" />
- <Control name="str11" text="总数" />
- <Control name="partcletype0" text="过小颗粒" />
- <Control name="partcletype1" text="过大颗粒" />
- <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
- <Control name="partcletype4" text="低计数率颗粒" />
- <Control name="partcletype6" text="不含分析元素的颗粒" />
- <Control name="partcletype7" text="非夹杂物颗粒SiC" />
- <Control name="partcletype8" text="非夹杂物颗粒FeO" />
- <Control name="partcletype9" text="未识别颗粒" />
- </Controls>
- </Form>
- <Form>
- <Name>ResultGrid</Name>
- <Controls>
- <Control name="ToolStripMenuItem1" text="复制整个表" />
- <Control name="ToolStripMenuItem2" text="复制选择区域" />
- <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
- <Control name="str1" text="标题" />
- <Control name="str8" text="信息" />
- <Control name="col1" text="测量结果名称" />
- <Control name="col2" text="运行开始" />
- <Control name="col3" text="运行结束" />
- <Control name="col4" text="运行时间" />
- <Control name="col5" text="已检测视场总数" />
- <Control name="col6" text="分析标准库" />
- <Control name="col7" text="已检测特征" />
- <Control name="col8" text="总检测面积(mm" />
- <Control name="col9" text="已分析特征总面积 (μm" />
- <Control name="col10" text="特征/夹杂物指数" />
- <Control name="col11" text="纳入指数/比例因子" />
- <Control name="col12" text="放大倍数" />
- </Controls>
- </Form>
- <Form>
- <Name>frmReportConditionChoose</Name>
- <Controls>
- <Control name="sscaptionname1" text="测量结果数据" />
- <Control name="sscaptionname2" text="颗粒显示方式" />
- <Control name="sscaptionname3" text="测量图显示方式" />
- <Control name="sscaptionname4" text="颗粒类型" />
- <Control name="sscaptionname5" text="粒级" />
- <Control name="sscaptionname6" text="最小颗粒" />
- <Control name="sscaptionname7" text="最大颗粒" />
- <Control name="sscaptionname8" text="尺寸计算法" />
- <Control name="sscaptionname9" text="数据类型" />
- <Control name="sscaptionname10" text="数据表类型" />
- <Control name="sscaptionname11" text="数据图类型" />
- <Control name="sscaptionname12" text="三元图" />
- <Control name="sscaptionname13" text="颗粒分类图" />
- <Control name="sscaptionname14" text="颗粒分布图" />
- <Control name="sscaptionname15" text="颗粒排列图" />
- <Control name="sscaptionname16" text="全部" />
- <Control name="sscaptionname17" text="分析颗粒" />
- <Control name="sscaptionname18" text="自定义" />
- <Control name="sscaptionname19" text="全部颗粒类型" />
- <Control name="sscaptionname20" text="按类型排列" />
- <Control name="sscaptionname21" text="按尺寸排列" />
- <Control name="sscaptionname22" text="排列方式" />
- <Control name="sscaptionname23" text="全部颗粒" />
- <Control name="sscaptionname25" text="测量结果概况" />
- <Control name="sscaptionname26" text="全部颗粒信息" />
- <Control name="sscaptionname27" text="颗粒成分子分类" />
- <Control name="sscaptionname29" text="颗粒尺寸分布" />
- <Control name="sscaptionname30" text="平均元素成分" />
- <Control name="m_reportname1" text="颗粒成分分类" />
- <Control name="m_str_axisy1" text="颗粒数" />
- <Control name="str_operatonmodule1" text="常用颗粒分类图" />
- <Control name="m_reportname2" text="颗粒成分子分类" />
- <Control name="m_str_axisy2" text="颗粒数" />
- <Control name="str_operatonmodule2" text="颗粒成份图" />
- <Control name="m_reportname4" text="颗粒尺寸分布" />
- <Control name="m_str_axisy4" text="颗粒数" />
- <Control name="str_operatonmodule4" text="颗粒尺寸分布图" />
- <Control name="str_operatonmodule5" text="三元图" />
- <Control name="str1" text="参数" />
- <Control name="str2" text="常规参数" />
- <Control name="BSEOriginal" text="BSE原图" />
- <Control name="ClassifiedDisplay" text="分类显示" />
- <Control name="OriginalSplicing" text="原图拼接" />
- <Control name="OriginalDistribution" text="原图颗粒分布" />
- <Control name="ParticleSizeTable" text="粒级表" />
- <Control name="ChineseStandard1" text="GB30834方法一(10561)" />
- <Control name="ChineseStandard2" text="GB30834方法二" />
- <Control name="AmericanStandard" text="美标" />
- <Control name="GermanStandard" text="德标 K法" />
- <Control name="yb6156" text="德标 K法(YB/T6156-2023)" />
- <Control name="CommonClassification" text="颗粒成分分类" />
- <Control name="ParticlesAnalyzed" text="已分析颗粒" />
- <Control name="SelectParticles" text="选择颗粒" />
- <Control name="otherParticles" text="其它颗粒" />
- <Control name="MergeParticles" text="拼接颗粒" />
- <Control name="DataSourceType" text="数据源类型" />
- <Control name="InclusionAreaRatio" text="颗粒面积比" />
- <Control name="IncaAreascale" text="颗粒面积比" />
- <Control name="InitialRatingLevel" text="起评级别" />
- <Control name="classifyGroupDisplay" text="按组显示图" />
- </Controls>
- </Form>
- <Form>
- <Name>Control_DrawDistrbutionImageAndBSE</Name>
- <Controls>
- <Control name="ToolStripMenuItem_selected" text="选中这些颗粒" />
- <Control name="ToolStripMenuItem_delete" text="排除这些颗粒" />
- <Control name="另存选择颗粒ToolStripMenuItem" text="另存为" />
- <Control name="ToolStripMenuItem_movesempoin MenuItem" text="导出原图拼接分类图"/>
- <Control name="toolStripMenuItem_DeleteParticles" text="删除颗粒"/>
- <Control name="str1" text="开始加载分布图信息" />
- <Control name="str2" text="已完成加载" />
- <Control name="str3" text="SEM位置:" />
- <Control name="str4" text="灰度#:" />
- <Control name="str5" text="撤销" />
- <Control name="str6" text="选中这些颗粒" />
- <Control name="str7" text="视域位置:" />
- <Control name="str8" text="复制当前屏幕图像" />
- <Control name="str9" text="移动SEM到当前位置" />
- <Control name="str10" text="移动SEM到颗粒视域位置" />
- <Control name="str11" text="确认分割?" />
- <Control name="str12" text="分割数量过多!" />
- <Control name="str13" text="分割失败!" />
- <Control name="str14" text="没有相交点!" />
-
- <Control name="MouseMove1" text="颗粒SEM位置:" />
- <Control name="MouseMove2" text="灰度#" />
-
- <Control name="BSEOriginal" text="BSE原图" />
- <Control name="ClassifiedDisplay" text="分类显示" />
- <Control name="OriginalSplicing" text="原图拼接" />
- <Control name="OriginalDistribution" text="原图颗粒分布" />
-
- </Controls>
- </Form>
- <Form>
- <Name>Control_DrawDistrbutionSortImage</Name>
- <Controls>
- <Control name="ToolStripMenuItem_selected" text="选择颗粒" />
- <Control name="ToolStripMenuItem_delete" text="删除颗粒" />
- <Control name="另存选择颗粒ToolStripMenuItem" text="另存为" />
- <Control name="ToolStripMenuItem_movesempoint" text="移动SEM到当前位置" />
- <Control name="toolStripMenuItem_copyimage" text="复制图像" />
- <Control name="str1" text="开始加载排序图信息" />
- <Control name="str2" text="已完成加载" />
- <Control name="str3" text="SEM位置:" />
- <Control name="str4" text="灰度#:" />
- <Control name="str5" text="撤销" />
- <Control name="str6" text="选择颗粒" />
- <Control name="str7" text="视域位置:" />
- <Control name="str8" text="灰度#" />
- <Control name="str9" text="移动SEM到当前位置" />
- <Control name="str10" text="移动SEM到颗粒视域位置" />
- <Control name="partcletype9" text="未识别颗粒" />
- <Control name="partcletype10" text="分析颗粒" />
- </Controls>
- </Form>
- <Form>
- <Name>DlgStageMgr</Name>
- <Controls>
- <Control name="button_edit" text="编辑" />
- <Control name="button_New" text="另存" />
- </Controls>
- </Form>
- <!-- OTSIncAMeasureApp -->
- <Form>
- <Name>OTSIncAMeasureAppForm</Name>
- <Controls>
- <Control name="rbOpen" text="打开" />
- <Control name="rbNewDocument" text="新建" />
- <Control name="rbOpenFile" text="打开" />
- <Control name="rbSaveFile" text="保存" />
- <Control name="rvSaveAsFile" text="另存为" />
- <Control name="rbSTDEditor" text="标准库编辑器" />
- <Control name="rbExitApp" text="退出" />
- <Control name="rbSelectDlg" text="程序管理" />
- <Control name="rbTabHome" text="基本功能" />
- <Control name="rbPanelFile" text="项目文件" />
- <Control name="rbPanelSample" text="样品操作及测量区域选择" />
- <Control name="rbSemFunction" text="Sem控制" />
- <Control name="rbAddSample" text="添加" />
- <Control name="rbDeleteSample" text="删除" />
- <Control name="ribInvers" text="反选" />
- <Control name="rbMeasureCircle" text="圆形" />
- <Control name="rbMeasureRectangle" text="矩形" />
- <Control name="ribCircle" text="圆形" />
- <Control name="ribRectangle" text="矩形" />
- <Control name="ribPolygon" text="多边形" />
- <Control name="rbPanelFunction" text="测量控制" />
- <Control name="rbStart" text="开始" />、
- <Control name="rbPause" text="暂停" />
- <Control name="rbStop" text="停止" />
- <Control name="rbCheckParam" text="检测" />
- <Control name="rbPReport" text="查看分析结果" />
- <Control name="rbReport" text="打开报告" />
- <Control name="rbTabView" text="视图功能" />
- <Control name="ribView" text="视图" />
- <Control name="rbRuler" text="标尺" />
- <Control name="rbSmaplePhoto" text="样品孔照片" />
- <Control name="rbSmapleName" text="样品孔名称" />
- <Control name="rbRecover" text="恢复布局" />
- <Control name="TSGrayVal" text="灰度值" />
- <Control name="STSemCoordinate" text="SEM坐标" />
- <Control name="ribbonButton3" text="复位" />
- <Control name="ribbonButton1" text="打开" />
- <Control name="ribbonOrbRecentItem1" text="打开" />
- <Control name="rbConnectHardware" text="连接电镜" />
- <Control name="rbDisconnectHardware" text="断开连接" />
- <Control name="rbAutoBeamOff" text="自动关枪" />
- <Control name="rbinterrupt" text="强制停止" />
-
- <Control name="m_SamplespaceWindowName" text="样品台" />
- <Control name="m_MeasureStauWindowName" text="帧图测试" />
- <Control name="m_MeasureRetWindowName" text="测量结果" />
- <Control name="m_NoWindowName" text="未知工作窗口" />
- <Control name="rbSTDEdit" text="编辑标准库" />
- <Control name="rbReClassify" text="重新分类" />
- <Control name="rbSysMgrApp" text="系统设置" />
- <Control name="language" text="ZH" />
- <Control name="message1" text="无OTSIncA有效通行证!" />
- <Control name="message2" text="当前文件已修改是否保存?" />
- <Control name="message3" text="错误日志" />
- <Control name="message4" text="是否保存修改信息" />
- <Control name="message5" text="确定删除 " />
- <Control name="message6" text=" 信息 ?" />
- <Control name="message7" text="测量条件正常!" />
- </Controls>
- </Form>
- <Form>
- <Name>MeasureStopMode</Name>
- <Controls>
- <Control name="groupBox1" text="测量结束方式" />
- <Control name="cB_CoverMode" text="1.覆盖测量区域" />
- <Control name="cB_ParticleMode" text="2.终止夹杂物数" />
- <Control name="cB_FieldMode" text="3.终止帧图数" />
- <Control name="cB_TimeMode" text="4.终止时间" />
- <Control name="label1" text="秒" />
- <Control name="cB_AreaMode" text="5.终止测量区域面积" />
- <Control name="label2" text="mm²" />
- </Controls>
- </Form>
- <Form>
- <Name>ProgMgrInfoForm</Name>
- <Controls>
- <Control name="groupBox1" text="样品台" />
- <Control name="label41" text="默认样品台配置编辑" />
- <Control name="label1" text="样品台模板选择" />
- <Control name="groupBox2" text="SEM样品台信息" />
- <Control name="label36" text="最小放大倍数" />
- <Control name="label6" text="y轴行程" />
- <Control name="label5" text="y轴方向" />
- <Control name="label4" text="x轴行程" />
- <Control name="label3" text="x轴方向" />
- <Control name="label2" text="100倍时屏幕尺寸" />
- <Control name="groupBox3" text="图像扫描参数" />
- <Control name="label13" text="扫描图尺寸" />
- <Control name="label12" text="扫描图精度" />
- <Control name="label11" text="取图方式" />
- <Control name="label7" text="测量终止方式" />
- <Control name="groupBox4" text="常规测量参数" />
- <Control name="label42" text="精炼工艺" />
- <Control name="label19" text="用户分析库编辑" />
- <Control name="label15" text="执行开关" />
- <Control name="label14" text="样品名" />
- <Control name="groupBox5" text="图像处理参数" />
- <Control name="label22" text="颗粒灰度范围" />
- <Control name="label21" text="背景灰度范围" />
- <Control name="label25" text="最小" />
- <Control name="label28" text="最大" />
- <Control name="label27" text="最大" />
- <Control name="label26" text="最大" />
- <Control name="label20" text="颗粒尺寸范围" />
- <Control name="lbShape" text="测量区域形状" />
- <Control name="lbArea" text="测量区域面积/mm2" />
- <Control name="groupBox6" text="X-ray参数" />
- <Control name="label17" text="使用系统库开关" />
- <Control name="label30" text="搜索X-ray最低计数" />
- <Control name="label29" text="搜索X-ray精度" />
- <Control name="label32" text="大颗粒X-ray时间" />
- <Control name="label45" text="小颗粒Xray时间" />
- <Control name="label33" text="X-ray计数期望值" />
- <Control name="label47" text="数量限值" />
- <Control name="label49" text="腐蚀膨胀系数" />
- <Control name="label31" text="扫描方式(大颗粒)" />
- <Control name="label8" text="分析阈值(ECD/um)" />
- <Control name="label52" text="是否启用颗粒过滤(Bruker)" />
- <Control name="groupBox7" text="模式选择" />
- <Control name="lbModelSel" text="模式选择" />
- <Control name="lbLaboratoty" text="实验室" />
- <Control name="lbAnalysisReferenceNumber" text="分析参考编号" />
- <Control name="lbCustomerName" text="客户名称" />
- <Control name="lbOperatorName" text="操作员姓名" />
- <Control name="lbSampleDescription" text="样本描述" />
- <Control name="lbComment" text="评论" />
- <Control name="label_AUTOBGREMOVE_TYPE" text="AUTOBGREMOVE_TYPE" />
- <Control name="label_Auto" text="自动" />
- <Control name="label_FrameEndMode" text="帧结束模式" />
- <Control name="groupBox9" text="标准库选择" />
- <Control name="label43" text="背景处理方式" />
- <Control name="label44" text="是否使用X-ray" />
- <Control name="label50" text="图像重叠尺寸(0=不启用)" />
- <Control name="btnok" text="确 定" />
- <Control name="btncancel" text="取 消" />
- <Control name="button1" text="特殊灰度颗粒识别设置" />
- <Control name="ProgMgrInfoForm" text="程序管理" />
- <Control name="message1" text="样品台信息不能为空" />
- <Control name="message2" text="100倍时屏幕尺寸不能为空" />
- <Control name="message3" text="x轴方向不能为空" />
- <Control name="message4" text="x轴行程起不能为空" />
- <Control name="message5" text="y轴行程不能为空" />
- <Control name="message6" text="y轴行程起不能为空" />
- <Control name="message7" text="测量终止方式不能为空" />
- <Control name="message8" text="终止帧图数不能为空" />
- <Control name="message9" text="终止夹杂物数不能为空" />
- <Control name="message10" text="取图方式不能为空" />
- <Control name="message11" text="扫描图精度不能为空" />
- <Control name="message12" text="扫描图尺寸不能为空" />
- <Control name="message13" text="最小放大倍数不可以为空" />
- <Control name="message14" text="颗粒面积范围最小值不能为空" />
- <Control name="message15" text="颗粒面积范围最大值不能为空" />
- <Control name="message16" text="背景灰度范围小值不能为空" />
- <Control name="message17" text="背景灰度范围大值不能为空" />
- <Control name="message18" text="颗粒灰度范围最小值不能为空" />
- <Control name="message19" text="颗粒灰度范围最大值不能为空" />
- <Control name="message20" text="X-ray扫描方式不能为空" />
- <Control name="message21" text="分析X-ray精度不能为空" />
- <Control name="message22" text="分析X-ray计数期望值不能为空" />
- <Control name="message23" text="请输入正确的数值格式" />
- <Control name="message24" text="请输入正确的数值格式" />
- <Control name="message25" text="请输入正确的数值格式" />
- <Control name="message26" text="请输入正确的数值格式" />
- <Control name="message27" text="请输入正确的数值格式" />
- <Control name="message28" text="请输入正确的数值格式" />
- <Control name="message29" text="请输入正确的数值格式" />
- <Control name="message30" text="请输入正确的数值格式" />
- <Control name="message31" text="请输入正确的数值格式" />
- <Control name="message32" text="请输入正确的数值格式" />
- <Control name="message33" text="请输入正确的数值格式" />
- <Control name="message34" text="请输入0-255之间的整数" />
- <Control name="message35" text="请输入正确的数值格式" />
- <Control name="message36" text="请输入0-255之间的整数" />
- <Control name="message37" text="请输入正确的数值格式" />
- <Control name="message38" text="请输入0-255之间的整数" />
- <Control name="message39" text="请输入正确的数值格式" />
- <Control name="message40" text="请输入0-255之间的整数" />
- <Control name="message41" text="请输入正确的数值格式" />
- <Control name="message42" text="请输入正确的数值格式" />
- <Control name="message43" text="请输入正确的数值格式" />
- <Control name="message44" text="输入的数值过大!" />
- <Control name="message45" text="输入的数值过大" />
- <Control name="message46" text="输入的数值过大" />
- <Control name="message47" text="输入的数值过大" />
- <Control name="message48" text="输入的数值过小" />
- <Control name="message49" text="输入的数值过小" />
- <Control name="message50" text="请输入正确的数值范围" />
- <Control name="message51" text="输入的数值过小" />
- <Control name="message52" text="输入的数值过小" />
- <Control name="message53" text="请输入正确的数值范围" />
- <Control name="message54" text="保存样品台时失败!" />
- <Control name="message55" text="请输入正确的数值格式!" />
- <Control name="message56" text="输入的数值过大!" />
- <Control name="message57" text="输入的数值过大!" />
- <Control name="message58" text="输入的数值过大!" />
- <Control name="message59" text="请输入正确的数值格式!" />
- <Control name="message60" text="请输入正确的数值格式!" />
- <Control name="message61" text="是否使用X-ray项不能为空" />
- <Control name="message62" text="输入的测量区域面积不可以为空!" />
- <Control name="message63" text="请输入正确的数值范围!" />
- <Control name="message64" text="请输入正确的数值范围!" />
- <Control name="message65" text="输入的腐蚀膨胀系数不可以为空!" />
- <Control name="message66" text="请输入正奇数或0!" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSSolutionWindow</Name>
- <Controls>
- <Control name="toolStripMenuItem1" text="增加样品测量" />
- <Control name="DeleteNode" text="删除样品" />
- <Control name="SampleParaLock" text="样品参数编辑锁" />
- <Control name="ClearMeasureData" text="清除测量数据" />
- <Control name="OTSSolutionWindow" text="样品窗口" />
- <Control name="m_DefaultSolutionName" text="未加载样品名" />
- <Control name="m_DefaultSampleName" text="样品" />
- <Control name="message1" text="是否确定删除?" />
- </Controls>
- </Form>
- <Form>
- <Name>DlgStageEdit</Name>
- <Controls>
- <Control name="label1" text="样品台名称:" />
- <Control name="label2" text="坐标系统:" />
- <Control name="radioButton_OTS" text="OTS坐标系统" />
- <Control name="radioButton_SEM" text="SEM坐标系统" />
- <Control name="groupBox1" text="样品台边框(微米)" />
- <Control name="label3" text="样品台边框形状:" />
- <Control name="radioButton_BoundaryCircle" text="圆形" />
- <Control name="radioButton_BoundarySquare" text="方形" />
- <Control name="label4" text="中心点坐标:" />
- <Control name="str1" text="样品孔名称" />
- <Control name="str2" text="样品孔形状" />
- <Control name="str3" text="中心x坐标" />
- <Control name="str4" text="中心y坐标" />
- <Control name="str5" text="宽度或直径" />
- <Control name="str6" text="高度或0" />
- <Control name="str7" text="圆形" />
- <Control name="str8" text="方形" />
- <Control name="str9" text="样品台名不能为空字串,不能含\',\'字符!" />
- <Control name="label7" text="宽度:" />
- <Control name="label8" text="高度:" />
- <Control name="groupBox2" text="标样(微米)" />
- <Control name="label14" text="标样形状:" />
- <Control name="radioButton_StandardsampleCircle" text="圆形" />
- <Control name="radioButton_StandardsampleSqare" text="方形" />
- <Control name="label13" text="中心点坐标:" />
- <Control name="label10" text="宽度:" />
- <Control name="label9" text="高度:" />
- <Control name="groupBox3" text="样品孔信息(微米):" />
- <Control name="button_AddHole" text="增加样品孔" />
- <Control name="button_DelHole" text="删除样品孔" />
- <Control name="button_Generate" text="生成" />
- <Control name="button_Coordinate" text="坐标系显示" />
- <Control name="button_Ok" text="保存" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSPropertyWindow</Name>
- <Controls>
- <Control name="OTSPropertyWindow" text="属性窗口" />
- </Controls>
- </Form>
- <Form>
- <Name>MeasureCheckReportInfoWindow</Name>
- <Controls>
- <Control name="label6" text="帧 数:" />
- <Control name="label5" text="颗 粒 数:" />
- <Control name="label4" text="开始时间:" />
- <Control name="label3" text="测量时间:" />
- <Control name="label1" text="测 量 数:" />
- <Control name="label2" text="测量状态:" />
- <Control name="label7" text="结束时间:" />
- <Control name="MeasureCheckReportInfoWindow" text="测量结果" />
- <Control name="str1" text="天" />
- <Control name="str2" text="时" />
- <Control name="str3" text="分" />
- <Control name="str4" text="秒" />
- <Control name="str5" text="0秒" />
- </Controls>
- </Form>
- <Form>
- <Name>MeasureProgressInfoWindow</Name>
- <Controls>
- <Control name="label1" text="样品名" />
- <Control name="label6" text="帧图数" />
- <Control name="label5" text="颗粒数量" />
- <Control name="label4" text="开始时间" />
- <Control name="label3" text="测量时间" />
- <Control name="label2" text="状态" />
- <Control name="str1" text="天" />
- <Control name="str2" text="时" />
- <Control name="str3" text="分" />
- <Control name="str4" text="秒" />
- <Control name="MeasureProgressInfoWindow" text="测量进度" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSMeasureResultWindow</Name>
- <Controls>
- <Control name="label5" text="当前颗粒数量" />
- <Control name="label6" text="帧图数" />
- <Control name="label1" text="样品名" />
- <Control name="label2" text="测量进度" />
- <Control name="label3" text="测量时间" />
- <Control name="label4" text="开始时间" />
- <Control name="TypeId" text="分类" />
- <Control name="strName" text="名称" />
- <Control name="Number" text="数量" />
- <Control name="Area" text="面积" />
- <Control name="str1" text="天" />
- <Control name="str2" text="时" />
- <Control name="str3" text="分" />
- <Control name="str4" text="秒" />
- <Control name="str5" text="设置当前测量列表错误信息:" />
- <Control name="str6" text="颗粒总数:" />
- <Control name="str7" text="面积总数:" />
- <Control name="str8" text="设置当前测量列表错误信息:" />
- <Control name="state1" text="完成" />
- <Control name="state2" text="失败" />
- <Control name="state3" text="停止" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSMeasureStatusWindow</Name>
- <Controls>
- <Control name="AcquireBSEImageMenuItem" text="获取BSE图" />
- <Control name="VisualAdjustingMenu" text="设置BSE图可视化灰度范围" />
- <Control name="toolStripMenuItem1" text="可视化设置特殊颗粒灰度范围" />
- <Control name="ChangeDiffImageShow" text="切换至BSE图" />
- <Control name="ToolStripMenuItem" text="BSE去背景图" />
- <Control name="ToolStripMenuItem2" text="BSE去背景彩色图" />
- <Control name="grayToolStripMenuItem" text="显示BSE灰度曲线图" />
- <Control name="AbandonGrayStripMenuItem" text="显示BSE去背景灰度曲线图" />
- <Control name="MenuItemLineScan" text="线扫描曲线" />
- <Control name="PointScanElementMenuItem" text="单点采集" />
- <Control name="ExportScanInfoMenuItem" text="导出采集信息" />
- <Control name="autobc" text="自动亮度对比度" />
- <Control name="ToolStripMenuItem_batchcapture" text="批量采集" />
- <Control name="message1" text="切换显示至BSE图" />
- <Control name="message2" text="切换显示至BSE图" />
- <Control name="message3" text="数据小于2!" />
- <Control name="message4" text="灰度值:" />
- <Control name="message5" text="切换显示至BSE图" />
- <Control name="message6" text="切换显示至BSE去背景图" />
- <Control name="message7" text="曲线图" />
- <Control name="message8" text="灰度曲线图" />
- <Control name="message9" text="去背景灰度曲线图" />
- <Control name="message10" text="--获取单点扫描数据:元素数量:'" />
- <Control name="message11" text=",元素名称:'" />
- <Control name="message12" text="默认标准库" />
- <Control name="message13" text="用户定义标准库" />
- <Control name="message14" text="系统标准库" />
- <Control name="message15" text="保存图片错误日志:" />
- <Control name="message16" text="元素名称" />
- <Control name="message17" text="原子数" />
- <Control name="message18" text="质量百分比" />
- <Control name="message19" text="摩尔比" />
- <Control name="message20" text="获取图像错误AcquireBSEImage_Click:" />
- <Control name="message21" text="删除单点采集信息与显示标尺信息:" />
- <Control name="message22" text="数据小于2!" />
- <Control name="message23" text="错误" />
- <Control name="message24" text="获取SEM当前位置:" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSSamplespaceWindow</Name>
- <Controls>
- <Control name="CMStrip" text="添加样品" />
- <Control name="AddStage" text="增加样品测量" />
- <Control name="DeleteStage" text="删除样品测量" />
- <Control name="ReadSEMData" text="读取SEM数据" />
- <Control name="SetSemData" text="设定SEM数据" />
- <Control name="SetSEMCenterLocation" text="定位到当前位置" />
- <Control name="DriveSEMToCenterLocation" text="驱动SEM到中心位置" />
- <Control name="DriveSEMToCurrentLocation" text="驱动SEM到当前位置" />
- <Control name="ShootBSEPicture" text="拍摄样品孔BSE照片" />
- <Control name="DeleteBSEPicture" text="删除BSE照片" />
- <Control name="DeleteSampleData" text="初始化样品测量" />
- <Control name="SlopFocusMenuItem" text="斜面焦距" />
- <Control name="message1" text="开始获取帧图信息" />
- <Control name="message2" text="错误日志" />
- <Control name="message3" text="驱动SEM到当前位置:--错误日志信息" />
- <Control name="message4" text="设置SEM到中心:--错误日志信息" />
- <Control name="message5" text="获取SEM当前位置:--错误日志信息" />
- <Control name="message6" text="连接电镜" />
- <Control name="message7" text="按Yes确认删除BSE扫描图" />
- <Control name="message8" text="按Yes确认删除样品孔BSE扫描图" />
- <Control name="message9" text="删除BSE图片错误信息:" />
- <Control name="message10" text="多边形区域是否绘制完成?" />
- <Control name="message11" text="提示" />
- <Control name="message12" text="SEM当前位置已经超出样品台范围,无法移动!" />
- </Controls>
- </Form>
- <Form>
- <Name>CStageManage</Name>
- <Controls>
- <Control name="ShootBSEPicture1" text="拍摄样品孔BSE照片" />
- <Control name="ShootBSEPicture2" text="拍摄测量区域BSE照片" />
- </Controls>
- </Form>
- <Form>
- <Name>RingGdiDataInput</Name>
- <Controls>
- <Control name="RingGdiDataInput" text="环形配置" />
- <Control name="label1" text="请输入环形外径(微米):" />
- <Control name="label2" text="请输入环形宽度(微米):" />
- <Control name="button1" text="确定" />
- <Control name="button2" text="取消" />
- </Controls>
- </Form>
- <Form>
- <Name>SampleGrid</Name>
- <Controls>
- <Control name="m_reportname1" text="颗粒成分分类" />
- <Control name="m_str_axisy1" text="颗粒数" />
- <Control name="str_operatonmodule1" text="常用颗粒分类图" />
- <Control name="m_reportname2" text="颗粒成份" />
- <Control name="m_str_axisy2" text="颗粒数" />
- <Control name="str_operatonmodule2" text="颗粒成份图" />
- <Control name="m_reportname3" text="元素成份" />
- <Control name="m_str_axisy3" text="元素含量" />
- <Control name="str_operatonmodule3" text="元素成份图" />
- <Control name="m_reportname4" text="颗粒尺寸分布" />
- <Control name="m_str_axisy4" text="颗粒数" />
- <Control name="str_operatonmodule4" text="颗粒尺寸分布图" />
- <Control name="str_operatonmodule5" text="三元图" />
- <Control name="str1" text="参数" />
- <Control name="str2" text="常规参数" />
- </Controls>
- </Form>
- <Form>
- <Name>ParticlesGrid</Name>
- <Controls>
- <Control name="ToolStripMenuItem1" text="复制整个表" />
- <Control name="ToolStripMenuItem2" text="复制选择区域" />
- <Control name="toolStripMenuItem4" text="复制图像" />
- <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
- <Control name="ToolStripMenuItem5" text="移动SEM到颗粒视域位置" />
- <Control name="ToolStripMenuItem_selectparticle" text="选择颗粒" />
- <Control name="ToolStripMenuItem_exportimagefile" text="导出图像文件" />
- <Control name="ToolStripMenuItem_exportzoomimagefile" text="导出放大图像文件" />
- <Control name="str1" text="选择颗粒" />
- <Control name="str2" text="已选定" />
- <Control name="str3" text="颗颗粒,请切换到分析图查看!" />
- <Control name="str4" text="序号" />
- <Control name="str5" text="颗粒图像" />
- <Control name="str6" text="颗粒名" />
- <Control name="str7" text="开始加载颗粒列表信息" />
- <Control name="str8" text="颗粒列表,已完成加载" />
- <Control name="str9" text="导出完成,图像共" />
-
- <Control name="str12" text="加载颗粒列表,开始创建表结构列...." />
- <Control name="str15" text="加载颗粒列表,正在获取" />
- <Control name="str18" text="数值" />
- <Control name="partcletype0" text="过小颗粒" />
- <Control name="partcletype1" text="过大颗粒" />
- <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
- <Control name="partcletype4" text="低计数率颗粒" />
- <Control name="partcletype6" text="不含分析元素的颗粒" />
- <Control name="partcletype7" text="非夹杂物颗粒SiC" />
- <Control name="partcletype8" text="非夹杂物颗粒FeO" />
- <Control name="partcletype9" text="未识别颗粒" />
- </Controls>
- </Form>
- <Form>
- <Name>ParticlesGridDevidePage</Name>
- <Controls>
- <Control name="ToolStripMenuItem1" text="复制整个表" />
- <Control name="ToolStripMenuItem2" text="复制选择区域" />
- <Control name="toolStripMenuItem4" text="复制当前显示列表图像" />
- <Control name="ToolStripMenuItem3" text="修改颗粒分类" />
- <Control name="ToolStripMenuItem5" text="移动SEM到颗粒视域位置" />
- <Control name="ToolStripMenuItem_selectparticle" text="选择颗粒" />
- <Control name="ToolStripMenuItem_exportimagefile" text="导出图像文件" />
- <Control name="ToolStripMenuItem_exportzoomimagefile" text="导出放大图像文件" />
- <Control name="label_Condition" text="条件查询:" />
- <Control name="label_Area" text="面积(μm²)" />
- <Control name="label_Dmax" text="Dmax(μm)" />
- <Control name="label_ParticleName" text="颗粒名称" />
- <Control name="btn_Sel" text="查询" />
- <Control name="btn_ReMeasure" text="二次采集" />
- <Control name="label_order" text="排序方式:" />
- <Control name="label1" text="共" />
- <Control name="label4" text="条记录,每页" />
- <Control name="label2" text="条,共" />
- <Control name="label6" text="页" />
- <Control name="str1" text="选择颗粒" />
- <Control name="str2" text="已选定" />
- <Control name="str3" text="颗颗粒,请切换到分析图查看!" />
- <Control name="str4" text="序号" />
- <Control name="str5" text="颗粒图像" />
- <Control name="str6" text="颗粒名" />
- <Control name="str7" text="开始加载颗粒列表信息" />
- <Control name="str8" text="颗粒列表,已完成加载" />
- <Control name="str9" text="导出完成,图像共" />
- <Control name="str10" text="输入类型错误!" />
- <Control name="str11" text="请注意输入数值的对应大小关系!"/>
- <Control name="str12" text="加载粒度列表并开始创建表结构列" />
- <Control name="str15" text="正在加载颗粒列表,正在获取" />
- <Control name="str18" text="Value" />
- <Control name="partcletype0" text="过小颗粒" />
- <Control name="partcletype1" text="过大颗粒" />
- <Control name="partcletype2" text="亮度不在分析范围内的颗粒" />
- <Control name="partcletype4" text="低计数率颗粒" />
- <Control name="partcletype6" text="不含分析元素的颗粒" />
- <Control name="partcletype7" text="非夹杂物颗粒SiC" />
- <Control name="partcletype8" text="非夹杂物颗粒FeO" />
- <Control name="partcletype9" text="未识别颗粒" />
- <Control name="str21" text="面积μm²" />
- <Control name="str22" text="等效圆直径μm" />
- <Control name="str23" text="最长直径μm" />
- <Control name="str24" text="最短直径μm" />
- <Control name="str25" text="长短直径比" />
- <Control name="str26" text="费雷特直径μm" />
- <Control name="str27" text="正交直径μm" />
- <Control name="str28" text="周长μm" />
- <Control name="str29" text="内接圆直径μm" />
- <Control name="str30" text="内接圆平均直径μm!" />
- <Control name="str31" text="展开长度μm" />
- <Control name="str32" text="展开长宽比" />
- <Control name="str33" text="朝向角度°" />
- <Control name="str34" text="硬度" />
- <Control name="str35" text="密度" />
- <Control name="str36" text="导电性" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSSysSTDMgrClass</Name>
- <Controls>
- <Control name="str1" text="无效颗粒" />
- <Control name="str2" text="过小颗粒" />
- <Control name="str3" text="过大颗粒" />
- <Control name="str4" text="亮度不在分析范围内的颗粒" />
- <Control name="str5" text="不进行搜索x-ray分析的颗粒" />
- <Control name="str6" text="低x-ray计数颗粒" />
- <Control name="str7" text="不含分析元素的颗粒" />
- <Control name="str8" text="不进行x-ray分析的颗粒" />
- <Control name="str9" text="非夹杂物颗粒SiC" />
- <Control name="str10" text="非夹杂物颗粒FeO" />
- <Control name="str11" text="未识别颗粒" />
- </Controls>
- </Form>
- <!-- OTSPeriodicTable -->
- <Form>
- <Name>ClassinicationRuleForm</Name>
- <Controls>
- <Control name="btnadd" text="添加" />
- <Control name="label3" text="最大" />
- <Control name="label2" text="灰度最小" />
- <Control name="label4" text="代表色" />
- <Control name="label1" text="形态参数(长宽比)" />
- <Control name="groupBox4" text="颗粒名称" />
- <Control name="btndel" text="删除" />
- <Control name="groupBox5" text="元素信息" />
- <Control name="btnRuleAdd" text="从手动编辑添加+" />
- <Control name="btnAddFromSysSTD" text="从系统库中添加+" />
- <Control name="btn_selectperiodic" text="从元素周期表添加+" />
- <Control name="btn_dbs" text="[点击选择]" />
- <Control name="btn_ok" text="确 定" />
- <Control name="btn_saveas" text="另存为" />
- <Control name="btn_exit" text="退 出" />
- <Control name="btn_open" text="打 开" />
- <Control name="groupBox3" text="标准库名称" />
- <Control name="btn_clear" text="清 空" />
- <Control name="ClassinicationRuleForm" text="颗粒分析标准库编辑窗口" />
- <Control name="str1" text="元素名" />
- <Control name="str2" text="最小" />
- <Control name="str3" text="最大" />
- <Control name="str4" text="修改" />
- <Control name="str5" text="删除" />
- <Control name="str6" text="颗粒编号" />
- <Control name="str7" text="颗粒名称" />
- <Control name="str8" text="颗粒名" />
- <Control name="str9" text="代表色" />
- <Control name="str10" text="形态参数" />
- <Control name="str11" text="灰度最小值" />
- <Control name="str12" text="灰度最大值" />
- <Control name="str13" text="元素编号" />
- <Control name="str14" text="颗粒编号" />
- <Control name="str15" text="元素名" />
- <Control name="str16" text="原子数" />
- <Control name="str17" text="规则" />
- <Control name="str18" text="最小" />
- <Control name="str19" text="最大" />
- <Control name="str20" text="请输入要添加的分类名称" />
- <Control name="str21" text="请选择要删除的颗粒" />
- <Control name="str22" text="是否要删除颗粒?" />
- <Control name="str23" text="灰度区间最小值不能大于最大值" />
- <Control name="str24" text="输入错误" />
- <Control name="str25" text="分类编号" />
- <Control name="str26" text="颗粒分析标准库,保存元素列表失败" />
- <Control name="str27" text="颗粒分析标准库,保存颗粒列表失败" />
- <Control name="str28" text="颗粒分析标准库失败" />
- <Control name="str29" text="请输入标准库名" />
- <Control name="str30" text="请输入分类规则" />
- <Control name="str31" text="请先输入库名" />
- <Control name="str32" text="是否要退出?" />
- <Control name="str33" text="退出" />
- <Control name="str34" text="请选择对应的颗粒再进行编辑!" />
- <Control name="str35" text="请先选择颗粒后再添加元素规则!" />
- <Control name="str36" text="是否要删除全部信息?" />
- </Controls>
- </Form>
- <Form>
- <Name>ClassinicationRuleForm_Edit</Name>
- <Controls>
- <Control name="label1" text="元素名" />
- <Control name="label2" text="最小" />
- <Control name="label3" text="最大" />
- <Control name="btn_ok" text="确定" />
- <Control name="btn_esc" text="取消" />
- <Control name="ClassinicationRuleForm_Edit" text="元素规则" />
- <Control name="str1" text="修改" />
- <Control name="str2" text="[修改元素规则]" />
- <Control name="str3" text="增加" />
- <Control name="str4" text="[增加元素规则]" />
- <Control name="str5" text="填写的元素名不能为空" />
- <Control name="str6" text="填写的元素最小值不能为空" />
- <Control name="str7" text="填写的元素最大值不能为空" />
- <Control name="str8" text="填写的元素名不正确" />
- <Control name="str9" text="填写的元素名不存在请重新填写" />
- <Control name="str10" text="输入的元素已经存在,请重新输入" />
- <Control name="str11" text="元素编号" />
- <Control name="str12" text="颗粒编号" />
- <Control name="str13" text="元素名" />
- <Control name="str14" text="原子数" />
- <Control name="str15" text="规则" />
- <Control name="str16" text="最小" />
- <Control name="str17" text="最大" />
- </Controls>
- </Form>
- <Form>
- <Name>ClassinicationRuleFromSysSTDForm</Name>
- <Controls>
- <Control name="groupBox1" text="系统定义夹杂物列表" />
- <Control name="label1" text="选择标准库" />
- <Control name="groupBox2" text="所包含元素" />
- <Control name="btn_ok" text="添 加" />
- <Control name="btn_exit" text="退 出" />
- <Control name="button1" text="全部添加" />
- <Control name="ClassinicationRuleFromSysSTDForm" text="从系统标准库中添加" />
- <Control name="str1" text="未找到系统标准库文件!" />
- <Control name="str2" text="符号" />
- <Control name="str3" text="元素名" />
- <Control name="str4" text="中文名" />
- <Control name="str5" text="颗粒ID" />
- <Control name="str6" text="起" />
- <Control name="str7" text="止" />
- <Control name="str8" text="原子数" />
- <Control name="str9" text="名称" />
- <Control name="str10" text="编号" />
- <Control name="str11" text="代表色" />
- <Control name="str12" text="宽高比" />
- <Control name="str13" text="元素号" />
- <Control name="str14" text="原子数" />
- <Control name="str15" text="规则" />
- <Control name="str16" text="最小" />
- <Control name="str17" text="最大" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSPeriodicTableForm</Name>
- <Controls>
- <Control name="OTSPeriodicTableForm" text="元素周期表" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSPeriodicTableForm_Small</Name>
- <Controls>
- <Control name="OTSPeriodicTableForm_Small" text="元素周期表" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSMeasureOutputNlog</Name>
- <Controls>
- <Control name="OTSMeasureOutputNlog" text="log输出" />
- <Control name="label1" text="log输出类型:" />
- <Control name="button_clear" text="清屏" />
- <Control name="button_stop" text="停止" />
- </Controls>
- </Form>
- <Form>
- <Name>ToolWindow</Name>
- <Controls>
- <Control name="ToolWindow" text="设置BSE图可视化灰度范围" />
- <Control name="groupBox1" text="设置参数" />
- <Control name="label1" text="灰度范围" />
- <Control name="btnYes" text="确认" />
- <Control name="btnCancel" text="取消" />
- </Controls>
- </Form>
- <Form>
- <Name>DINStandardABCDDS</Name>
- <Controls>
- <Control name="str1" text="夹杂物级别" />
- <Control name="str2" text="结果" />
- <Control name="str3" text="K0指数" />
- </Controls>
- </Form>
- <Form>
- <Name>frmParticleClassification</Name>
- <Controls>
- <Control name="frmParticleClassification" text="设置颗粒分类" />
- <Control name="label1" text="选择类型" />
- <Control name="button1" text="确 定" />
- </Controls>
- </Form>
- <Form>
- <Name>OTSDisplaySampleGrid</Name>
- <Controls>
- <Control name="str1" text="夹杂物级别" />
- <Control name="str2" text="结果" />
- <Control name="str3" text="K0指数" />
- <Control name="str4" text="中文名" />
- <Control name="str5" text="夹杂物ID" />
- <Control name="str6" text="起" />
- <Control name="str7" text="止" />
- <Control name="str8" text="原子数" />
- <Control name="str9" text="名称" />
- <Control name="str10" text="编号" />
- <Control name="str11" text="代表色" />
- <Control name="str12" text="宽高比" />
- <Control name="str13" text="元素号" />
- <Control name="str14" text="原子数" />
- <Control name="str15" text="规则" />
- <Control name="str16" text="最小" />
- <Control name="str17" text="最大" />
- </Controls>
- </Form>
- <Form>
- <Name>SlopFocus</Name>
- <Controls>
- <Control name="SlopFocus" text="是否启用" />
- <Control name="cB_enable" text="是否启用" />
- <Control name="groupBox1" text="第一点" />
- <Control name="label8" text="工作距离" />
- <Control name="bn_FirstPoint" text="获取" />
- <Control name="groupBox2" text="第二点" />
- <Control name="label6" text="工作距离" />
- <Control name="bn_SecondPoint" text="获取" />
- <Control name="groupBox3" text="第三点" />
- <Control name="label1" text="工作距离" />
- <Control name="bn_ThirdPoint" text="获取" />
- <Control name="bn_Cancel" text="取消" />
- <Control name="bn_OK" text="确定" />
- <Control name="str13" text="元素号" />
- <Control name="str14" text="原子数" />
- <Control name="str15" text="规则" />
- <Control name="str16" text="最小" />
- <Control name="str17" text="最大" />
- </Controls>
- </Form>
- <Form>
- <Name>frmReMeasure</Name>
- <Controls>
- <Control name="frmReMeasure" text="二次采集" />
- <Control name="groupBox_img" text="颗粒图片" />
- <Control name="groupBox_param" text="测量参数" />
- <Control name="groupBox_state" text="测量状态" />
- <Control name="BTN_EXPORT" text="导出" />
- <Control name="BTN_NO" text="停止" />
- <Control name="BTN_YES" text="开始采集" />
- <Control name="LB_IMGSCANSPEED" text="图像扫描精度:" />
- <Control name="LB_Outspread" text="图像外扩像数值:" />
- <Control name="LB_SCANTIME" text="能谱扫描时间(毫秒):" />
- <Control name="LB_XRAYSCANMODE" text="颗粒扫描方式:" />
- <Control name="LB_partFun" text="颗粒提取方法:" />
- <Control name="LB_HAND" text="手动处理:" />
- <Control name="str1" text="序号" />
- <Control name="str2" text="连接IPC服务器失败!" />
- <Control name="str3" text="处理完成!" />
- <Control name="str4" text="---开始处理颗粒:" />
- <Control name="str5" text="设置放大倍数:" />
- <Control name="str6" text="设置放大倍数失败!" />
- <Control name="str7" text="移动到颗粒中心位置:" />
- <Control name="str8" text="移动到颗粒中心位置失败!" />
- <Control name="str9" text="重新拍图:" />
- <Control name="str10" text="拍图失败!" />
- <Control name="str11" text="寻找新位置颗粒信息:" />
- <Control name="str12" text="寻找新位置颗粒信息失败!" />
- <Control name="str13" text="采集能谱:" />
- <Control name="str14" text="采集能谱失败!" />
- <Control name="str15" text="能谱分析结果:" />
- <Control name="str16" text="---结束处理颗粒:" />
- <Control name="str17" text="处理完成!" />
- <Control name="str18" text="请在图片上手动选择要处理的颗粒!" />
- <Control name="str19" text="已重测" />
- <Control name="str20" text="颗粒名" />
- <Control name="str21" text="面积μm²" />
- <Control name="str22" text="等效圆直径μm" />
- <Control name="str23" text="最长直径μm" />
- <Control name="str24" text="最短直径μm" />
- <Control name="str25" text="长短直径比" />
- <Control name="str26" text="费雷特直径um" />
- <Control name="str27" text="正交直径um" />
- <Control name="str28" text="周长um" />
- <Control name="str29" text="内接圆直径um" />
- <Control name="str30" text="内接圆平均直径um" />
- <Control name="str31" text="展开长度um" />
- <Control name="str32" text="展开长宽比" />
- <Control name="str33" text="转向角度°" />
- <Control name="str34" text="导电性" />
- <Control name="str35" text="密度" />
- <Control name="str36" text="硬度" />
- <Control name="str37" text="导出成功!" />
- <Control name="str38" text="提示" />
- </Controls>
- </Form>
- <Form>
- <Name>InclusionsTraceability</Name>
- <Controls>
- <Control name="ToolStripMenuItem1" text="复制整个表" />
- <Control name="ToolStripMenuItem2" text="复制选择区域" />
- <Control name="toolStripMenuItem4" text="复制当前显示列表图像" />
- <Control name="ToolStripMenuItem3" text="恢复至初始状态" />
- <Control name="ToolStripMenuItem5" text="移动SEM到颗粒视域位置" />
- <Control name="ToolStripMenuItem_selectparticle" text="选择颗粒" />
- <Control name="ToolStripMenuItem_exportimagefile" text="导出图像文件" />
- <Control name="ToolStripMenuItem_exportzoomimagefile" text="导出放大图像文件" />
- <Control name="label_Condition" text="条件查询:" />
- <Control name="label_Area" text="面积(μm²)" />
- <Control name="label_Dmax" text="Dmax(μm)" />
- <Control name="label_ParticleName" text="颗粒名称" />
- <Control name="btn_Sel" text="查询" />
- <Control name="str1" text="精炼渣" />
- <Control name="str2" text="耐材" />
- <Control name="str3" text="精炼渣+耐材" />
- <Control name="str4" text="序号" />
- <Control name="str5" text="颗粒图像" />
- <Control name="str6" text="颗粒名" />
- <Control name="str7" text="开始加载颗粒列表信息" />
- <Control name="str8" text="颗粒列表,已完成加载" />
- <Control name="str9" text="导出完成,图像共" />
- <Control name="str10" text="输入类型错误!" />
- <Control name="str11" text="请注意输入数值的对应大小关系!"/>
- <Control name="str12" text="加载粒度列表并开始创建表结构列" />
- <Control name="str15" text="正在加载颗粒列表,正在获取" />
- <Control name="str21" text="面积μm²" />
- <Control name="str22" text="等效圆直径μm" />
- <Control name="str23" text="最长卡规直径μm" />
- <Control name="str24" text="最短卡规直径μm" />
- <Control name="str25" text="长短直径比" />
- <Control name="str26" text="费雷特直径μm" />
- <Control name="str27" text="正交直径μm" />
- <Control name="str28" text="周长μm" />
- <Control name="str29" text="内接圆直径μm" />
- <Control name="str30" text="内接圆平均直径μm" />
- <Control name="str31" text="展开长度μm" />
- <Control name="str32" text="展开长宽比" />
- <Control name="str33" text="朝向角度°" />
- <Control name="str34" text="外来夹杂物类型" />
- </Controls>
- </Form>
- </Resource>
|