| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242 |
- using Metis.ParameterSet;
- using OpenCvSharp;
- using OpenCvSharp.Extensions;
- using PaintDotNet.Annotation;
- using PaintDotNet.Annotation.Enum;
- using PaintDotNet.Base;
- using PaintDotNet.Base.CommTool;
- using PaintDotNet.Base.Functionodel;
- using PaintDotNet.CustomControl;
- using PaintDotNet.Data.Param;
- using PaintDotNet.DbOpreate.DbBll;
- using PaintDotNet.DbOpreate.DbModel;
- using PaintDotNet.DedicatedAnalysis.DuctileIron.Common;
- using PaintDotNet.GeneralAnalysis;
- using PaintDotNet.Instrument;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Data.Entity.Migrations.Infrastructure;
- using System.Diagnostics.Contracts;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace PaintDotNet.DedicatedAnalysis.VermiculateCastIron.GBT26656_2011
- {
- /// <summary>
- /// 蠕化级别
- /// </summary>
- internal class VermiculateCastIronGBT26656Classification : PdnBaseForm
- {
- #region 基础控件
- private Button button1;
- private CheckBox checkBox1;
- private Button button2;
- private GroupBox groupBox2;
- private ListView listView1;
- private GroupBox groupBox3;
- private GroupBox groupBox5;
- private GroupBox groupBox6;
- private GroupBox groupBox8;
- private DataGridView dataGridView1;
- private GroupBox groupBox9;
- private Button button6;
- private Button button7;
- private ListView listView2;
- private DataGridView dataGridView2;
- private Button button9;
- private Button button8;
- private NumericUpDown numericUpDown1;
- private Label label8;
- private Label label9;
- private Label label10;
- private ImageList imageList1;
- private IContainer components;
- private GroupBox groupBox1;
- private TrackBar trackBar2;
- private NumericUpDown numericUpDown5;
- private NumericUpDown numericUpDown4;
- private Label label3;
- private CheckBox checkBox3;
- private TrackBar trackBar4;
- private GroupBox groupBox7;
- private Button button4;
- private Button button3;
- private CheckBox checkBox5;
- private CheckBox checkBox4;
- private Label label5;
- private NumericUpDown numericUpDown6;
- private Label label4;
- private DataGridViewTextBoxColumn Column1;
- private DataGridViewTextBoxColumn Column2;
- private DataGridViewTextBoxColumn Column3;
- private DataGridViewTextBoxColumn Column4;
- private DataGridViewTextBoxColumn Column5;
- private DataGridViewTextBoxColumn Column6;
- private DataGridViewTextBoxColumn Column7;
- private DataGridViewTextBoxColumn Column8;
- private DataGridViewTextBoxColumn Column9;
- private DataGridViewTextBoxColumn Column10;
- private DataGridViewTextBoxColumn Column11;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
- private DataGridViewTextBoxColumn Column12;
- #endregion
- /// <summary>
- /// 调色板
- /// </summary>
- PaintDotNet.ColorsForm colorsForm1;
- /// <summary>
- /// 主控件
- /// </summary>
- private AppWorkspace appWorkspace;
- /// <summary>
- /// 图像面板
- /// </summary>
- private DocumentWorkspaceWindow documentWorkspace;
- /// <summary>
- /// 公共按钮
- /// </summary>
- private CommonControlButtons commonControlButtons;
- /// <summary>
- /// 选中图片的bitmap
- /// </summary>
- private Bitmap bitmap;
- /// <summary>
- /// 计算结果的表格集合
- /// </summary>
- private List<DataTable> resultTableList = new List<DataTable>();
- /// <summary>
- /// 保存用于生成报告的图片
- /// </summary>
- private List<Bitmap> bitList;
- /// <summary>
- /// 储存点击保存结果后的所有原图与分析图
- /// </summary>
- private Dictionary<string, List<Bitmap>> bitDic = new Dictionary<string, List<Bitmap>>();
- /// <summary>
- /// 是否显示全部
- /// </summary>
- private bool showAll = false;
- /// <summary>
- /// 当前图片是否有视场
- /// </summary>
- private bool isHadView = false;
- /// <summary>
- /// 原图mat-包括视场
- /// </summary>
- private Mat mat;
- /// <summary>
- /// 相的集合
- /// </summary>
- private PhaseModel phaseModel;
- /// <summary>
- /// 单位标尺
- /// </summary>
- private double unitLength = 1;
- /// <summary>
- /// 球状点集合
- /// </summary>
- private List<List<OpenCvSharp.Point>> ballPoint;
- /// <summary>
- /// 团状点集合
- /// </summary>
- private List<List<OpenCvSharp.Point>> groupPoint;
- /// <summary>
- /// 蠕虫状点集合
- /// </summary>
- private List<List<OpenCvSharp.Point>> vermicularPoint;
- /// <summary>
- /// 球状圆形系数集合
- /// </summary>
- private List<double> ballCircleList;
- /// <summary>
- /// 团状圆形系数集合
- /// </summary>
- private List<double> groupCircleList;
- /// <summary>
- /// 蠕虫状圆形系数集合
- /// </summary>
- private List<double> vermicularCircleList;
- /// <summary>
- /// 球状面积
- /// </summary>
- private double ballCircleArea;
- /// <summary>
- /// 团状面积
- /// </summary>
- private double groupCircleArea;
- /// <summary>
- /// 蠕虫状面积
- /// </summary>
- private double vermicularCircleArea;
- /// <summary>
- /// 圆形系数
- /// </summary>
- private double[] CircularityCoefficient = new double[] { 0.525, 0.625 };
- /// <summary>
- /// 是否仅修改相的颜色
- /// </summary>
- private bool changeColor = false;
- /// <summary>
- /// 球状颜色
- /// </summary>
- public Color BallColor = Color.LightBlue;
- /// <summary>
- /// 团状颜色
- /// </summary>
- public Color GroupColor = Color.YellowGreen;
- /// <summary>
- /// 蠕虫状颜色
- /// </summary>
- public Color VermicularColor = Color.Yellow;
- /// <summary>
- /// 字体
- /// </summary>
- public string fontStyle = "宋体";
- /// <summary>
- /// 字号
- /// </summary>
- public float fontSize = 12;
- /// <summary>
- /// 字体颜色
- /// </summary>
- public Color fontColor = Color.Black;
- /// <summary>
- /// 放大倍数
- /// </summary>
- private decimal gainNumber;
- /// <summary>
- /// 是否未对图片做其他操作
- /// </summary>
- private bool isFirstSwitch = false;
- /// <summary>
- /// 中间数据
- /// </summary>
- private List<ExportProjectModel> tempDataModel = new List<ExportProjectModel>();
- /// <summary>
- /// 面积
- /// </summary>
- private List<string> tempArea;
- /// <summary>
- /// 最大卡规直径
- /// </summary>
- private List<string> maxCaliperDiameter;
- private Button button5;
- private BinaryControl bc;
- BinaryClass binaryClass;
- private DataGridView dataGridView3;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
- /// <summary>
- /// 原型系数
- /// </summary>
- private List<string> circleCoefficientList;
- /// <summary>
- /// 保存窗口参数
- /// </summary>
- /// <summary>
- /// 各个图片对应数据
- /// </summary>
- private Dictionary<string, GrainSizeAnalysisModel> eachData = new Dictionary<string, GrainSizeAnalysisModel>();
- private const string ParamKey_Report = "report";//报告设置
- private const string ParamKey_Screen = "screen";//筛选
- private const string ParamKey_ScreenMin = "screenMin";//面积最小值
- private const string ParamKey_ScreenMax = "screenMax";//面积最大值
- private const string ParamKey_Coefficient = "coefficient";//显示圆形系数
- private const string ParamKey_Colour = "colour";//显示不同级别颜色
- private const string ParamKey_Sort = "sort";//显示不同级别颜色
- private const string ParamKey_DecimalPlace = "decimalPlace";//保留小数位数
- private const string ParamKey_BallColor = "ballColor";//球状颜色
- private const string ParamKey_GroupColor = "groupColor";//团状颜色
- private const string ParamKey_VermicularColor = "vermicularColor";//蠕虫状颜色
- private const string ParamKey_FontStyle = "fontStyle";//字
- private const string ParamKey_FontSize = "fontSize";//字号
- private const string ParamKey_FontColor = "fontColor";//字颜色
- private decimal areaMin = -1;
- private decimal areaMax = -1;
- /// <summary>
- /// 类型(蠕铁GBT26656 - 1,蠕铁JBT3829-2)
- /// </summary>
- private int IronType = 0;
- private Button button10;
- private Button button11;
- private int defaultIndex = -1;
- private bool isExportResults = false;
- private bool isExportReports = false;
- private bool isExportProjects = false;
- /// <summary>
- /// 是否脚本运行
- /// </summary>
- private Boolean initScriptValues = false;
- private int menuId;
- private string menuName;
- public VermiculateCastIronGBT26656Classification(AppWorkspace appWorkspace, int type, PdnMenuItem menuItem)
- {
- this.menuId = menuItem.MenuId;
- this.menuName = menuItem.Text;
- binaryClass = new BinaryClass(menuId);
- this.appWorkspace = appWorkspace;
- IronType = type;
- NullKey();
- InitializeComponent();
- InitializeLanguageText();
- InitGridHeader();
- InitPicList();
- InitOtherTools();
- InitCommonButtonEvent();
- AddPictureBoxEvent();
- if (IronType == 1)
- {
- SetAnalyzeModelFromXml("Template.Manager.item3.VermiculateCastIronGBT26656");
- }
- else if (IronType == 2)
- {
- SetAnalyzeModelFromXml("Template.Manager.item3.VermiculateCastIronJBT3829");
- }
- }
- private void ShowImgEvent(object sender, EventArgs e)
- {
- listView1.Focus();
- if (this.defaultIndex != -1)
- {
- //如果是脚本执行,将参数带入
- if (appWorkspace.ScriptRunning && appWorkspace.ScriptCurrentParam != null)
- {
- this.initScriptValues = true;//ScriptAutomatic
- //Boolean initScriptValues = true;
- ////在这里反射出对应功能的参数类
- string className = InvariantData.path_Action + ".Action" + menuId;
- ParamObject param = (ParamObject)System.Reflection.Assembly.Load(InvariantData.assembly_Data).CreateInstance(className);
- foreach (Args arg in param.Lists)
- {
- Args param1 = appWorkspace.ScriptCurrentParam.Lists.Find(m => m.Key.Equals(arg.Key));
- if (param1.value != null)
- arg.Value = param1.value;
- getValue(arg.key, arg.Value);
- }
- appWorkspace.ScriptCurrentParam = null;//阻止第二次进入仍然被赋值参数
- }
- else
- {//读取上次关闭窗口时保存的参数
- GetXmlParameter();
- GetListParamModel();
- }
- this.listView1.Items[defaultIndex].Focused = true;
- this.listView1.Items[defaultIndex].Selected = true;
- if (this.initScriptValues && this.appWorkspace.ScriptAutomatic)
- this.startScriptAutomaticAction();
- }
- }
- private void InitializeLanguageText()
- {
- this.bc = new PaintDotNet.CustomControl.BinaryControl();
- //
- // bc
- //
- this.bc.BinaryBackColor = System.Drawing.Color.Red;
- this.bc.BinaryChecked = false;
- this.bc.BinaryStyle = 1;
- this.bc.Location = new System.Drawing.Point(147, 59);
- this.bc.Name = "bc";
- this.bc.OriginChecked = false;
- this.bc.scope1End = 0D;
- this.bc.scope1Start = 0D;
- this.bc.scope2End = 0D;
- this.bc.scope2Start = 0D;
- this.bc.scope3End = 0D;
- this.bc.scope3Start = 0D;
- this.bc.Size = new System.Drawing.Size(360, 292);
- this.bc.TabIndex = 20;
- this.Controls.Add(this.bc);
- this.Controls.SetChildIndex(this.bc, 0);
- this.dataGridViewTextBoxColumn19.HeaderText = PdnResources.GetString("Menu.Wormlikenumber.text");
- this.dataGridViewTextBoxColumn18.HeaderText = PdnResources.GetString("Menu.Wormlikearea.text");
- this.dataGridViewTextBoxColumn17.HeaderText = PdnResources.GetString("Menu.Numberofclustersandclusters.text");
- this.dataGridViewTextBoxColumn16.HeaderText = PdnResources.GetString("Menu.Massandflocculentarea.text");
- this.dataGridViewTextBoxColumn15.HeaderText = PdnResources.GetString("Menu.Numberofballs.text");
- this.dataGridViewTextBoxColumn14.HeaderText = PdnResources.GetString("Menu.Sphericalarea.text");
- this.dataGridViewTextBoxColumn13.HeaderText = PdnResources.GetString("Menu.view.text");
- this.dataGridViewTextBoxColumn12.HeaderText = PdnResources.GetString("Menu.picture.Text");
- this.groupBox9.Text = PdnResources.GetString("Menu.Analysisresult.text");
- this.Column11.HeaderText = PdnResources.GetString("Menu.Creeplevel.text");
- this.Column10.HeaderText = PdnResources.GetString("Menu.Creepingrate.text");
- this.Column9.HeaderText = PdnResources.GetString("Menu.Graphitecontent.text");
- this.Column8.HeaderText = PdnResources.GetString("Menu.Thetotalarea.text");
- this.Column7.HeaderText = PdnResources.GetString("Menu.Wormlikenumber.text");
- this.Column6.HeaderText = PdnResources.GetString("Menu.Wormlikearea.text");
- this.Column5.HeaderText = PdnResources.GetString("Menu.Numberofclustersandclusters.text");
- this.Column4.HeaderText = PdnResources.GetString("Menu.Massandflocculentarea.text");
- this.Column3.HeaderText = PdnResources.GetString("Menu.Numberofballs.text");
- this.Column2.HeaderText = PdnResources.GetString("Menu.Sphericalarea.text");
- this.Column1.HeaderText = PdnResources.GetString("Menu.view.text");
- this.groupBox8.Text = PdnResources.GetString("Menu.Theesultshow.text");
- this.checkBox4.Text = PdnResources.GetString("Menu.Dedicatedanalysis.blackmetal.displaycircyfactor.text");
- this.checkBox5.Text = PdnResources.GetString("Menu.Displaydifferentgradesofgraphitecolor.text");
- this.button3.Text = PdnResources.GetString("Menu.Displayparamssettings.text");
- this.button4.Text = PdnResources.GetString("Menu.Colorsetting.text");
- this.groupBox6.Text = PdnResources.GetString("Menu.Displayparamssettings.text");
- this.checkBox3.Text = PdnResources.GetString("Menu.filter.text");
- this.label3.Text = PdnResources.GetString("Menu.range.text") + ":";
- this.groupBox5.Text = PdnResources.GetString("Menu.Particlescreening.text");
- this.groupBox3.Text = PdnResources.GetString("Menu.Preview.text");
- this.groupBox2.Text = PdnResources.GetString("Menu.Tools.ImageIndex.Text");
- this.button1.Text = PdnResources.GetString("Menu.Setting.Text");
- this.checkBox1.Text = PdnResources.GetString("Menu.Opensettingsatingreport.text");
- this.button2.Text = PdnResources.GetString("Menu.Saveresult.text");
- this.groupBox1.Text = PdnResources.GetString("Menu.operation.text");
- if (IronType == 1)
- this.Text = "GB/T 26656-2011(" + PdnResources.GetString("Menu.Creeplevel.text") + ")";
- else if (IronType == 2)
- this.Text = "JBT3829(" + PdnResources.GetString("Menu.Creeplevel.text") + ")";
-
- this.label4.Text = PdnResources.GetString("Menu.Dedicatedanalysis.blackmetal.Themaximugreaterthan.text");
- this.label5.Text = "μm" + PdnResources.GetString("Menu.Dedicatedanalysis.blackmetal.classify.text");
- this.groupBox7.Text = PdnResources.GetString("Menu.Dedicatedanalysis.blackmetal.Classificatissettings.text");
- this.button6.Text = PdnResources.GetString("Menu.Showall.text");
- this.button7.Text = PdnResources.GetString("Menu.Edit.Delete.Text");
- this.Column12.HeaderText = PdnResources.GetString("Menu.Creeplevel.text");
- this.dataGridViewTextBoxColumn11.HeaderText = PdnResources.GetString("Menu.Creepingrate.text");
- this.dataGridViewTextBoxColumn10.HeaderText = PdnResources.GetString("Menu.Graphitecontent.text");
- this.dataGridViewTextBoxColumn9.HeaderText = PdnResources.GetString("Menu.Thetotalarea.text");
- this.dataGridViewTextBoxColumn8.HeaderText = PdnResources.GetString("Menu.Wormlikenumber.text");
- this.dataGridViewTextBoxColumn7.HeaderText = PdnResources.GetString("Menu.Wormlikearea.text");
- this.dataGridViewTextBoxColumn6.HeaderText = PdnResources.GetString("Menu.Numberofclustersandclusters.text");
- this.dataGridViewTextBoxColumn5.HeaderText = PdnResources.GetString("Menu.Massandflocculentarea.text");
- this.dataGridViewTextBoxColumn4.HeaderText = PdnResources.GetString("Menu.Numberofballs.text");
- this.dataGridViewTextBoxColumn3.HeaderText = PdnResources.GetString("Menu.Sphericalarea.text");
- this.dataGridViewTextBoxColumn2.HeaderText = PdnResources.GetString("Menu.view.text");
- this.dataGridViewTextBoxColumn1.HeaderText = PdnResources.GetString("Menu.picture.Text");
- this.button8.Text = PdnResources.GetString("Menu.Tools.CreateReport.Text");
- this.button9.Text = PdnResources.GetString("Menu.Exportresults.text");
- this.label8.Text = PdnResources.GetString("Menu.Decimal.text") + ":";
- this.button5.Text = PdnResources.GetString("Menu.Exportproject.text");
- this.dataGridViewTextBoxColumn23.HeaderText = PdnResources.GetString("Menu.Creeplevel.text");
- this.dataGridViewTextBoxColumn22.HeaderText = PdnResources.GetString("Menu.Creepingrate.text");
- this.dataGridViewTextBoxColumn21.HeaderText = PdnResources.GetString("Menu.Graphitecontent.text");
- this.dataGridViewTextBoxColumn20.HeaderText = PdnResources.GetString("Menu.Thetotalarea.text");
- this.button10.Text = PdnResources.GetString("Menu.File.SaveAll.Text");
- this.button11.Text = PdnResources.GetString("Menu.Applyall.text");
- }
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.button2 = new System.Windows.Forms.Button();
- this.checkBox1 = new System.Windows.Forms.CheckBox();
- this.button1 = new System.Windows.Forms.Button();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.listView1 = new System.Windows.Forms.ListView();
- this.imageList1 = new System.Windows.Forms.ImageList(this.components);
- this.groupBox3 = new System.Windows.Forms.GroupBox();
- this.groupBox5 = new System.Windows.Forms.GroupBox();
- this.trackBar4 = new System.Windows.Forms.TrackBar();
- this.trackBar2 = new System.Windows.Forms.TrackBar();
- this.numericUpDown5 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown4 = new System.Windows.Forms.NumericUpDown();
- this.label3 = new System.Windows.Forms.Label();
- this.checkBox3 = new System.Windows.Forms.CheckBox();
- this.groupBox6 = new System.Windows.Forms.GroupBox();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.checkBox5 = new System.Windows.Forms.CheckBox();
- this.checkBox4 = new System.Windows.Forms.CheckBox();
- this.groupBox8 = new System.Windows.Forms.GroupBox();
- this.dataGridView1 = new System.Windows.Forms.DataGridView();
- this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.groupBox9 = new System.Windows.Forms.GroupBox();
- this.dataGridView3 = new System.Windows.Forms.DataGridView();
- this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.button5 = new System.Windows.Forms.Button();
- this.label10 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
- this.label8 = new System.Windows.Forms.Label();
- this.button9 = new System.Windows.Forms.Button();
- this.button8 = new System.Windows.Forms.Button();
- this.dataGridView2 = new System.Windows.Forms.DataGridView();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.listView2 = new System.Windows.Forms.ListView();
- this.button7 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.groupBox7 = new System.Windows.Forms.GroupBox();
- this.label5 = new System.Windows.Forms.Label();
- this.numericUpDown6 = new System.Windows.Forms.NumericUpDown();
- this.label4 = new System.Windows.Forms.Label();
- this.button10 = new System.Windows.Forms.Button();
- this.button11 = new System.Windows.Forms.Button();
- this.groupBox1.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.groupBox5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.trackBar4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.trackBar2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).BeginInit();
- this.groupBox6.SuspendLayout();
- this.groupBox8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
- this.groupBox9.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
- this.groupBox7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown6)).BeginInit();
- this.SuspendLayout();
- //
- // groupBox1
- //
- this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.groupBox1.Controls.Add(this.button10);
- this.groupBox1.Controls.Add(this.button11);
- this.groupBox1.Controls.Add(this.button2);
- this.groupBox1.Controls.Add(this.checkBox1);
- this.groupBox1.Controls.Add(this.button1);
- this.groupBox1.Location = new System.Drawing.Point(14, 3);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(1081, 50);
- this.groupBox1.TabIndex = 1;
- this.groupBox1.TabStop = false;
- //
- // button2
- //
- this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.button2.Location = new System.Drawing.Point(900, 14);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(84, 30);
- this.button2.TabIndex = 2;
- this.button2.UseVisualStyleBackColor = true;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // checkBox1
- //
- this.checkBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.checkBox1.AutoSize = true;
- this.checkBox1.Location = new System.Drawing.Point(141, 21);
- this.checkBox1.Name = "checkBox1";
- this.checkBox1.Size = new System.Drawing.Size(15, 14);
- this.checkBox1.TabIndex = 1;
- this.checkBox1.UseVisualStyleBackColor = true;
- //
- // button1
- //
- this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.button1.Location = new System.Drawing.Point(15, 14);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(84, 30);
- this.button1.TabIndex = 0;
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // groupBox2
- //
- this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.groupBox2.Controls.Add(this.listView1);
- this.groupBox2.Location = new System.Drawing.Point(14, 60);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(135, 607);
- this.groupBox2.TabIndex = 2;
- this.groupBox2.TabStop = false;
- //
- // listView1
- //
- this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.listView1.HideSelection = false;
- this.listView1.LargeImageList = this.imageList1;
- this.listView1.Location = new System.Drawing.Point(5, 17);
- this.listView1.MultiSelect = false;
- this.listView1.Name = "listView1";
- this.listView1.Size = new System.Drawing.Size(124, 584);
- this.listView1.TabIndex = 0;
- this.listView1.UseCompatibleStateImageBehavior = false;
- this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
- this.listView1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseDown);
- //
- // imageList1
- //
- this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
- this.imageList1.ImageSize = new System.Drawing.Size(64, 64);
- this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
- //
- // groupBox3
- //
- this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.groupBox3.Location = new System.Drawing.Point(515, 60);
- this.groupBox3.Name = "groupBox3";
- this.groupBox3.Size = new System.Drawing.Size(580, 606);
- this.groupBox3.TabIndex = 3;
- this.groupBox3.TabStop = false;
- //
- // groupBox5
- //
- this.groupBox5.Controls.Add(this.trackBar4);
- this.groupBox5.Controls.Add(this.trackBar2);
- this.groupBox5.Controls.Add(this.numericUpDown5);
- this.groupBox5.Controls.Add(this.numericUpDown4);
- this.groupBox5.Controls.Add(this.label3);
- this.groupBox5.Controls.Add(this.checkBox3);
- this.groupBox5.Location = new System.Drawing.Point(149, 353);
- this.groupBox5.Name = "groupBox5";
- this.groupBox5.Size = new System.Drawing.Size(353, 76);
- this.groupBox5.TabIndex = 5;
- this.groupBox5.TabStop = false;
- //
- // trackBar4
- //
- this.trackBar4.Cursor = System.Windows.Forms.Cursors.Hand;
- this.trackBar4.Location = new System.Drawing.Point(257, 46);
- this.trackBar4.Maximum = 0;
- this.trackBar4.Name = "trackBar4";
- this.trackBar4.Size = new System.Drawing.Size(92, 45);
- this.trackBar4.TabIndex = 14;
- this.trackBar4.TickStyle = System.Windows.Forms.TickStyle.None;
- this.trackBar4.Scroll += new System.EventHandler(this.trackBar4_Scroll);
- //
- // trackBar2
- //
- this.trackBar2.Cursor = System.Windows.Forms.Cursors.Hand;
- this.trackBar2.Location = new System.Drawing.Point(104, 46);
- this.trackBar2.Maximum = 0;
- this.trackBar2.Name = "trackBar2";
- this.trackBar2.Size = new System.Drawing.Size(92, 45);
- this.trackBar2.TabIndex = 13;
- this.trackBar2.TickStyle = System.Windows.Forms.TickStyle.None;
- this.trackBar2.Scroll += new System.EventHandler(this.trackBar2_Scroll);
- //
- // numericUpDown5
- //
- this.numericUpDown5.Location = new System.Drawing.Point(197, 46);
- this.numericUpDown5.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown5.Name = "numericUpDown5";
- this.numericUpDown5.Size = new System.Drawing.Size(62, 21);
- this.numericUpDown5.TabIndex = 12;
- this.numericUpDown5.ValueChanged += new System.EventHandler(this.numericUpDown5_ValueChanged);
- //
- // numericUpDown4
- //
- this.numericUpDown4.Location = new System.Drawing.Point(47, 46);
- this.numericUpDown4.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown4.Name = "numericUpDown4";
- this.numericUpDown4.Size = new System.Drawing.Size(59, 21);
- this.numericUpDown4.TabIndex = 10;
- this.numericUpDown4.ValueChanged += new System.EventHandler(this.numericUpDown4_ValueChanged);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(9, 50);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(0, 12);
- this.label3.TabIndex = 9;
- //
- // checkBox3
- //
- this.checkBox3.AutoSize = true;
- this.checkBox3.Location = new System.Drawing.Point(30, 21);
- this.checkBox3.Name = "checkBox3";
- this.checkBox3.Size = new System.Drawing.Size(15, 14);
- this.checkBox3.TabIndex = 0;
- this.checkBox3.UseVisualStyleBackColor = true;
- this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
- //
- // groupBox6
- //
- this.groupBox6.Controls.Add(this.button4);
- this.groupBox6.Controls.Add(this.button3);
- this.groupBox6.Controls.Add(this.checkBox5);
- this.groupBox6.Controls.Add(this.checkBox4);
- this.groupBox6.Location = new System.Drawing.Point(149, 435);
- this.groupBox6.Name = "groupBox6";
- this.groupBox6.Size = new System.Drawing.Size(354, 59);
- this.groupBox6.TabIndex = 6;
- this.groupBox6.TabStop = false;
- //
- // button4
- //
- this.button4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button4.Location = new System.Drawing.Point(221, 36);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(94, 20);
- this.button4.TabIndex = 3;
- this.button4.UseVisualStyleBackColor = true;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button3.Location = new System.Drawing.Point(221, 12);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(94, 20);
- this.button3.TabIndex = 2;
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // checkBox5
- //
- this.checkBox5.AutoSize = true;
- this.checkBox5.Location = new System.Drawing.Point(32, 38);
- this.checkBox5.Name = "checkBox5";
- this.checkBox5.Size = new System.Drawing.Size(15, 14);
- this.checkBox5.TabIndex = 1;
- this.checkBox5.UseVisualStyleBackColor = true;
- this.checkBox5.CheckedChanged += new System.EventHandler(this.checkBox5_CheckedChanged);
- //
- // checkBox4
- //
- this.checkBox4.AutoSize = true;
- this.checkBox4.Location = new System.Drawing.Point(32, 17);
- this.checkBox4.Name = "checkBox4";
- this.checkBox4.Size = new System.Drawing.Size(15, 14);
- this.checkBox4.TabIndex = 0;
- this.checkBox4.UseVisualStyleBackColor = true;
- this.checkBox4.CheckedChanged += new System.EventHandler(this.checkBox4_CheckedChanged);
- //
- // groupBox8
- //
- this.groupBox8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.groupBox8.Controls.Add(this.dataGridView1);
- this.groupBox8.Location = new System.Drawing.Point(155, 545);
- this.groupBox8.Name = "groupBox8";
- this.groupBox8.Size = new System.Drawing.Size(353, 121);
- this.groupBox8.TabIndex = 8;
- this.groupBox8.TabStop = false;
- //
- // dataGridView1
- //
- this.dataGridView1.AllowUserToAddRows = false;
- this.dataGridView1.AllowUserToDeleteRows = false;
- this.dataGridView1.AllowUserToResizeColumns = false;
- this.dataGridView1.AllowUserToResizeRows = false;
- this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dataGridView1.BackgroundColor = System.Drawing.Color.White;
- this.dataGridView1.ColumnHeadersHeight = 44;
- this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Column1,
- this.Column2,
- this.Column3,
- this.Column4,
- this.Column5,
- this.Column6,
- this.Column7,
- this.Column8,
- this.Column9,
- this.Column10,
- this.Column11});
- this.dataGridView1.Location = new System.Drawing.Point(7, 21);
- this.dataGridView1.MultiSelect = false;
- this.dataGridView1.Name = "dataGridView1";
- this.dataGridView1.ReadOnly = true;
- this.dataGridView1.RowHeadersVisible = false;
- this.dataGridView1.RowTemplate.Height = 23;
- this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dataGridView1.Size = new System.Drawing.Size(340, 94);
- this.dataGridView1.TabIndex = 0;
- //
- // Column1
- //
- this.Column1.FillWeight = 73.14721F;
- this.Column1.MinimumWidth = 72;
- this.Column1.Name = "Column1";
- this.Column1.ReadOnly = true;
- this.Column1.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column2
- //
- this.Column2.FillWeight = 368.5279F;
- this.Column2.MinimumWidth = 66;
- this.Column2.Name = "Column2";
- this.Column2.ReadOnly = true;
- this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column3
- //
- this.Column3.FillWeight = 73.14721F;
- this.Column3.MinimumWidth = 66;
- this.Column3.Name = "Column3";
- this.Column3.ReadOnly = true;
- this.Column3.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column4
- //
- this.Column4.FillWeight = 73.14721F;
- this.Column4.MinimumWidth = 66;
- this.Column4.Name = "Column4";
- this.Column4.ReadOnly = true;
- this.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column5
- //
- this.Column5.FillWeight = 73.14721F;
- this.Column5.MinimumWidth = 66;
- this.Column5.Name = "Column5";
- this.Column5.ReadOnly = true;
- this.Column5.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column6
- //
- this.Column6.FillWeight = 73.14721F;
- this.Column6.MinimumWidth = 66;
- this.Column6.Name = "Column6";
- this.Column6.ReadOnly = true;
- this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column7
- //
- this.Column7.FillWeight = 73.14721F;
- this.Column7.MinimumWidth = 66;
- this.Column7.Name = "Column7";
- this.Column7.ReadOnly = true;
- this.Column7.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column8
- //
- this.Column8.FillWeight = 73.14721F;
- this.Column8.MinimumWidth = 66;
- this.Column8.Name = "Column8";
- this.Column8.ReadOnly = true;
- this.Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column8.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column9
- //
- this.Column9.FillWeight = 73.14721F;
- this.Column9.MinimumWidth = 66;
- this.Column9.Name = "Column9";
- this.Column9.ReadOnly = true;
- this.Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column9.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column10
- //
- this.Column10.FillWeight = 73.14721F;
- this.Column10.MinimumWidth = 66;
- this.Column10.Name = "Column10";
- this.Column10.ReadOnly = true;
- this.Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column10.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column11
- //
- this.Column11.FillWeight = 73.14721F;
- this.Column11.MinimumWidth = 66;
- this.Column11.Name = "Column11";
- this.Column11.ReadOnly = true;
- this.Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column11.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // groupBox9
- //
- this.groupBox9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.groupBox9.Controls.Add(this.dataGridView3);
- this.groupBox9.Controls.Add(this.button5);
- this.groupBox9.Controls.Add(this.label10);
- this.groupBox9.Controls.Add(this.label9);
- this.groupBox9.Controls.Add(this.numericUpDown1);
- this.groupBox9.Controls.Add(this.label8);
- this.groupBox9.Controls.Add(this.button9);
- this.groupBox9.Controls.Add(this.button8);
- this.groupBox9.Controls.Add(this.dataGridView2);
- this.groupBox9.Controls.Add(this.listView2);
- this.groupBox9.Controls.Add(this.button7);
- this.groupBox9.Controls.Add(this.button6);
- this.groupBox9.Location = new System.Drawing.Point(14, 672);
- this.groupBox9.Name = "groupBox9";
- this.groupBox9.Size = new System.Drawing.Size(1081, 204);
- this.groupBox9.TabIndex = 9;
- this.groupBox9.TabStop = false;
- //
- // dataGridView3
- //
- this.dataGridView3.AllowUserToAddRows = false;
- this.dataGridView3.AllowUserToDeleteRows = false;
- this.dataGridView3.AllowUserToResizeColumns = false;
- this.dataGridView3.AllowUserToResizeRows = false;
- this.dataGridView3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dataGridView3.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dataGridView3.BackgroundColor = System.Drawing.Color.White;
- this.dataGridView3.ColumnHeadersHeight = 48;
- this.dataGridView3.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn12,
- this.dataGridViewTextBoxColumn13,
- this.dataGridViewTextBoxColumn14,
- this.dataGridViewTextBoxColumn15,
- this.dataGridViewTextBoxColumn16,
- this.dataGridViewTextBoxColumn17,
- this.dataGridViewTextBoxColumn18,
- this.dataGridViewTextBoxColumn19,
- this.dataGridViewTextBoxColumn20,
- this.dataGridViewTextBoxColumn21,
- this.dataGridViewTextBoxColumn22,
- this.dataGridViewTextBoxColumn23});
- this.dataGridView3.Location = new System.Drawing.Point(228, 117);
- this.dataGridView3.MultiSelect = false;
- this.dataGridView3.Name = "dataGridView3";
- this.dataGridView3.ReadOnly = true;
- this.dataGridView3.RowHeadersVisible = false;
- this.dataGridView3.RowTemplate.Height = 23;
- this.dataGridView3.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dataGridView3.Size = new System.Drawing.Size(693, 84);
- this.dataGridView3.TabIndex = 11;
- //
- // dataGridViewTextBoxColumn12
- //
- this.dataGridViewTextBoxColumn12.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn12.MinimumWidth = 56;
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.ReadOnly = true;
- this.dataGridViewTextBoxColumn12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn12.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn13
- //
- this.dataGridViewTextBoxColumn13.FillWeight = 57.7742F;
- this.dataGridViewTextBoxColumn13.MinimumWidth = 54;
- this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
- this.dataGridViewTextBoxColumn13.ReadOnly = true;
- this.dataGridViewTextBoxColumn13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn13.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn14
- //
- this.dataGridViewTextBoxColumn14.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn14.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
- this.dataGridViewTextBoxColumn14.ReadOnly = true;
- this.dataGridViewTextBoxColumn14.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn14.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn15
- //
- this.dataGridViewTextBoxColumn15.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn15.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
- this.dataGridViewTextBoxColumn15.ReadOnly = true;
- this.dataGridViewTextBoxColumn15.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn15.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn16
- //
- this.dataGridViewTextBoxColumn16.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn16.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
- this.dataGridViewTextBoxColumn16.ReadOnly = true;
- this.dataGridViewTextBoxColumn16.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn16.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn17
- //
- this.dataGridViewTextBoxColumn17.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn17.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
- this.dataGridViewTextBoxColumn17.ReadOnly = true;
- this.dataGridViewTextBoxColumn17.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn17.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn18
- //
- this.dataGridViewTextBoxColumn18.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn18.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
- this.dataGridViewTextBoxColumn18.ReadOnly = true;
- this.dataGridViewTextBoxColumn18.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn18.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn19
- //
- this.dataGridViewTextBoxColumn19.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn19.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
- this.dataGridViewTextBoxColumn19.ReadOnly = true;
- this.dataGridViewTextBoxColumn19.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn19.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn20
- //
- this.dataGridViewTextBoxColumn20.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn20.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
- this.dataGridViewTextBoxColumn20.ReadOnly = true;
- this.dataGridViewTextBoxColumn20.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn20.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn21
- //
- this.dataGridViewTextBoxColumn21.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn21.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
- this.dataGridViewTextBoxColumn21.ReadOnly = true;
- this.dataGridViewTextBoxColumn21.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn21.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn22
- //
- this.dataGridViewTextBoxColumn22.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn22.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
- this.dataGridViewTextBoxColumn22.ReadOnly = true;
- this.dataGridViewTextBoxColumn22.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn22.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn23
- //
- this.dataGridViewTextBoxColumn23.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn23.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
- this.dataGridViewTextBoxColumn23.ReadOnly = true;
- this.dataGridViewTextBoxColumn23.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn23.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // button5
- //
- this.button5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button5.Location = new System.Drawing.Point(941, 102);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(128, 26);
- this.button5.TabIndex = 10;
- this.button5.UseVisualStyleBackColor = true;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // label10
- //
- this.label10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.label10.AutoSize = true;
- this.label10.ForeColor = System.Drawing.SystemColors.ScrollBar;
- this.label10.Location = new System.Drawing.Point(927, 9);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(11, 192);
- this.label10.TabIndex = 9;
- this.label10.Text = "|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.ForeColor = System.Drawing.SystemColors.ScrollBar;
- this.label9.Location = new System.Drawing.Point(210, 9);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(11, 192);
- this.label9.TabIndex = 8;
- this.label9.Text = "|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|\r\n|";
- //
- // numericUpDown1
- //
- this.numericUpDown1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.numericUpDown1.Location = new System.Drawing.Point(993, 162);
- this.numericUpDown1.Maximum = new decimal(new int[] {
- 10,
- 0,
- 0,
- 0});
- this.numericUpDown1.Name = "numericUpDown1";
- this.numericUpDown1.Size = new System.Drawing.Size(70, 21);
- this.numericUpDown1.TabIndex = 7;
- this.numericUpDown1.Value = new decimal(new int[] {
- 2,
- 0,
- 0,
- 0});
- this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
- //
- // label8
- //
- this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(954, 167);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(0, 12);
- this.label8.TabIndex = 6;
- //
- // button9
- //
- this.button9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button9.Location = new System.Drawing.Point(941, 68);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(128, 26);
- this.button9.TabIndex = 5;
- this.button9.UseVisualStyleBackColor = true;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button8
- //
- this.button8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button8.Location = new System.Drawing.Point(941, 34);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(128, 26);
- this.button8.TabIndex = 4;
- this.button8.UseVisualStyleBackColor = true;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // dataGridView2
- //
- this.dataGridView2.AllowUserToAddRows = false;
- this.dataGridView2.AllowUserToDeleteRows = false;
- this.dataGridView2.AllowUserToResizeColumns = false;
- this.dataGridView2.AllowUserToResizeRows = false;
- this.dataGridView2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dataGridView2.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dataGridView2.BackgroundColor = System.Drawing.Color.White;
- this.dataGridView2.ColumnHeadersHeight = 48;
- this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn1,
- this.dataGridViewTextBoxColumn2,
- this.dataGridViewTextBoxColumn3,
- this.dataGridViewTextBoxColumn4,
- this.dataGridViewTextBoxColumn5,
- this.dataGridViewTextBoxColumn6,
- this.dataGridViewTextBoxColumn7,
- this.dataGridViewTextBoxColumn8,
- this.dataGridViewTextBoxColumn9,
- this.dataGridViewTextBoxColumn10,
- this.dataGridViewTextBoxColumn11,
- this.Column12});
- this.dataGridView2.Location = new System.Drawing.Point(228, 12);
- this.dataGridView2.MultiSelect = false;
- this.dataGridView2.Name = "dataGridView2";
- this.dataGridView2.ReadOnly = true;
- this.dataGridView2.RowHeadersVisible = false;
- this.dataGridView2.RowTemplate.Height = 23;
- this.dataGridView2.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dataGridView2.Size = new System.Drawing.Size(693, 102);
- this.dataGridView2.TabIndex = 3;
- //
- // dataGridViewTextBoxColumn1
- //
- this.dataGridViewTextBoxColumn1.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn1.MinimumWidth = 56;
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.ReadOnly = true;
- this.dataGridViewTextBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn2
- //
- this.dataGridViewTextBoxColumn2.FillWeight = 57.7742F;
- this.dataGridViewTextBoxColumn2.MinimumWidth = 54;
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.ReadOnly = true;
- this.dataGridViewTextBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn3
- //
- this.dataGridViewTextBoxColumn3.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn3.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- this.dataGridViewTextBoxColumn3.ReadOnly = true;
- this.dataGridViewTextBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn4
- //
- this.dataGridViewTextBoxColumn4.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn4.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- this.dataGridViewTextBoxColumn4.ReadOnly = true;
- this.dataGridViewTextBoxColumn4.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn5
- //
- this.dataGridViewTextBoxColumn5.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn5.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
- this.dataGridViewTextBoxColumn5.ReadOnly = true;
- this.dataGridViewTextBoxColumn5.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn6
- //
- this.dataGridViewTextBoxColumn6.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn6.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
- this.dataGridViewTextBoxColumn6.ReadOnly = true;
- this.dataGridViewTextBoxColumn6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn7
- //
- this.dataGridViewTextBoxColumn7.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn7.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
- this.dataGridViewTextBoxColumn7.ReadOnly = true;
- this.dataGridViewTextBoxColumn7.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn8
- //
- this.dataGridViewTextBoxColumn8.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn8.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
- this.dataGridViewTextBoxColumn8.ReadOnly = true;
- this.dataGridViewTextBoxColumn8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn8.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn9
- //
- this.dataGridViewTextBoxColumn9.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn9.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
- this.dataGridViewTextBoxColumn9.ReadOnly = true;
- this.dataGridViewTextBoxColumn9.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn9.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn10
- //
- this.dataGridViewTextBoxColumn10.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn10.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.ReadOnly = true;
- this.dataGridViewTextBoxColumn10.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn10.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewTextBoxColumn11
- //
- this.dataGridViewTextBoxColumn11.FillWeight = 59.7742F;
- this.dataGridViewTextBoxColumn11.MinimumWidth = 55;
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- this.dataGridViewTextBoxColumn11.ReadOnly = true;
- this.dataGridViewTextBoxColumn11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.dataGridViewTextBoxColumn11.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // Column12
- //
- this.Column12.FillWeight = 59.7742F;
- this.Column12.MinimumWidth = 55;
- this.Column12.Name = "Column12";
- this.Column12.ReadOnly = true;
- this.Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
- this.Column12.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // listView2
- //
- this.listView2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.listView2.HideSelection = false;
- this.listView2.Location = new System.Drawing.Point(16, 56);
- this.listView2.Name = "listView2";
- this.listView2.Size = new System.Drawing.Size(181, 140);
- this.listView2.TabIndex = 2;
- this.listView2.UseCompatibleStateImageBehavior = false;
- this.listView2.SelectedIndexChanged += new System.EventHandler(this.listView2_SelectedIndexChanged);
- //
- // button7
- //
- this.button7.Location = new System.Drawing.Point(145, 20);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(52, 26);
- this.button7.TabIndex = 1;
- this.button7.UseVisualStyleBackColor = true;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // button6
- //
- this.button6.Location = new System.Drawing.Point(16, 20);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(93, 26);
- this.button6.TabIndex = 0;
- this.button6.UseVisualStyleBackColor = true;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // groupBox7
- //
- this.groupBox7.Controls.Add(this.label5);
- this.groupBox7.Controls.Add(this.numericUpDown6);
- this.groupBox7.Controls.Add(this.label4);
- this.groupBox7.Location = new System.Drawing.Point(154, 500);
- this.groupBox7.Name = "groupBox7";
- this.groupBox7.Size = new System.Drawing.Size(353, 39);
- this.groupBox7.TabIndex = 10;
- this.groupBox7.TabStop = false;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(197, 19);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(0, 12);
- this.label5.TabIndex = 2;
- //
- // numericUpDown6
- //
- this.numericUpDown6.Location = new System.Drawing.Point(135, 13);
- this.numericUpDown6.Maximum = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.numericUpDown6.Name = "numericUpDown6";
- this.numericUpDown6.Size = new System.Drawing.Size(58, 21);
- this.numericUpDown6.TabIndex = 1;
- this.numericUpDown6.Value = new decimal(new int[] {
- 10,
- 0,
- 0,
- 0});
- this.numericUpDown6.ValueChanged += new System.EventHandler(this.numericUpDown6_ValueChanged);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(30, 19);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(0, 12);
- this.label4.TabIndex = 0;
- //
- // button10
- //
- this.button10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button10.Location = new System.Drawing.Point(990, 14);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(84, 30);
- this.button10.TabIndex = 21;
- this.button10.Text = "保存全部";
- this.button10.UseVisualStyleBackColor = true;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // button11
- //
- this.button11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button11.Location = new System.Drawing.Point(810, 14);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(84, 30);
- this.button11.TabIndex = 20;
- this.button11.Text = "应用全部";
- this.button11.UseVisualStyleBackColor = true;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // VermiculateCastIronGBT26656Classification
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.ClientSize = new System.Drawing.Size(1107, 881);
- this.Controls.Add(this.groupBox7);
- this.Controls.Add(this.groupBox5);
- this.Controls.Add(this.groupBox9);
- this.Controls.Add(this.groupBox8);
- this.Controls.Add(this.groupBox6);
- this.Controls.Add(this.groupBox3);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.groupBox1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Name = "VermiculateCastIronGBT26656Classification";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.InclusionsStandardDialog_FormClosing);
- this.Load += new System.EventHandler(this.GrainSizeDialog_Load);
- this.Shown += new System.EventHandler(this.ShownChoiseItemAndInitData);
- this.Controls.SetChildIndex(this.groupBox1, 0);
- this.Controls.SetChildIndex(this.groupBox2, 0);
- this.Controls.SetChildIndex(this.groupBox3, 0);
- this.Controls.SetChildIndex(this.groupBox6, 0);
- this.Controls.SetChildIndex(this.groupBox8, 0);
- this.Controls.SetChildIndex(this.groupBox9, 0);
- this.Controls.SetChildIndex(this.groupBox5, 0);
- this.Controls.SetChildIndex(this.groupBox7, 0);
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.groupBox2.ResumeLayout(false);
- this.groupBox5.ResumeLayout(false);
- this.groupBox5.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.trackBar4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.trackBar2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).EndInit();
- this.groupBox6.ResumeLayout(false);
- this.groupBox6.PerformLayout();
- this.groupBox8.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
- this.groupBox9.ResumeLayout(false);
- this.groupBox9.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
- this.groupBox7.ResumeLayout(false);
- this.groupBox7.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown6)).EndInit();
- this.ResumeLayout(false);
- }
- /// <summary>
- /// 初始化其他控件
- /// </summary>
- private void InitOtherTools()
- {
- //
- //初始化图像控件
- //
- this.documentWorkspace = new DocumentWorkspaceWindow(this.appWorkspace);
- this.documentWorkspace.Dock = DockStyle.Fill;
- this.documentWorkspace.HookMouseEvents();
- this.documentWorkspace.AuxiliaryLineEnabled = false;
- this.documentWorkspace.Visible = false;
- this.documentWorkspace.activeTool = Annotation.Enum.DrawToolType.NullTool;
- this.groupBox3.Controls.Add(documentWorkspace);
- //
- //初始化操作按钮
- //
- this.commonControlButtons = new CommonControlButtons();
- this.commonControlButtons.Dock = DockStyle.Top;
- this.commonControlButtons.Height = 30;
- this.commonControlButtons.HideZoomToWindowAndActualSize();
- this.commonControlButtons.Visible = false;
- this.groupBox3.Controls.Add(commonControlButtons);
- //
- //调色板
- //
- this.colorsForm1 = new ColorsForm();
- this.colorsForm1.setSaveBtn_Click(new System.EventHandler(this.colorsForm1Changed));
- this.colorsForm1.StartPosition = FormStartPosition.CenterScreen;
- ////
- ////获取系统标尺-微米
- ////
- //this.appWorkspace.getMeasureInfo().TryGetValue(MeasurementUnit.Micron, out unitLength);
- //
- //获取系统放大倍数
- //
- this.gainNumber = this.documentWorkspace.GetGainMultiple();
- if (this.gainNumber == 0)
- this.gainNumber = 1;
- //二值化集成2
- bc.OriginCheckedChangedAction += new EventHandler(this.bcOriginCheckedChanged);//初始化原图勾选改变事件
- binaryClass.createDocumentItems(new string[] { PdnResources.GetString("Menu.BinaryAction.BinaryExtraction.Text"), PdnResources.GetString("Menu.Particlescreening.text") }
- , this.bc, this.appWorkspace, this.documentWorkspace, this.listView1);//初始化相的工作结构
- binaryClass.BinaryImplFinishAction += new EventHandler(this.bClassBinaryImplFinishAction);//二值化后续处理事件
- //binaryClass.SetBinaryBackColor(Color.Red);
- }
- //二值化集成3
- #region 二值化相关方法
- private void InclusionsStandardDialog_FormClosing(object sender, FormClosingEventArgs e)
- {
- #region [开启脚本录制]
- if (appWorkspace.startScriptRecording)
- {
- getScriptRecording();
- }
- #endregion
- this.saveDialogParamValues();
- binaryClass.saveParams();
- //xml保存路径
- string filePath = Application.StartupPath + "\\Config\\" + Startup.instance.SettingPrefix + "\\GrainSizeAnalyze\\GrainSizeAnalysisModel.xml";
- GrainSizeAnalysisModel analysisModelXml = XmlSerializeHelper.DESerializer<GrainSizeAnalysisModel>(FileOperationHelper.ReadStringFromFile(filePath, System.IO.FileMode.Open));
- foreach (var analysisItem in this.eachData[GetImgKey()].ListParam)
- {
- bool foundItem = false;
- foreach (var item in analysisModelXml.ListParam)
- {
- if (item.param_key.Equals(analysisItem.param_key) && item.menuId == analysisItem.menuId)
- {
- item.param_value = analysisItem.param_value;
- foundItem = true;
- break;
- }
- }
- if (!foundItem)
- analysisModelXml.ListParam.Add(analysisItem.cloneModel());
- }
- //按路径和名称保存xml文件
- string userInfoXml = XmlSerializeHelper.XmlSerialize<GrainSizeAnalysisModel>(analysisModelXml);
- //保存xml
- FileOperationHelper.WriteStringToFile(userInfoXml, filePath, System.IO.FileMode.Create);
- }
- private void ShownChoiseItemAndInitData(object sender, EventArgs e)
- {
- binaryClass.RefreshHistogramControl1Values();
- }
- /// <summary>
- /// 添加参数改变的监听
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void GrainSizeDialog_Load(object sender, EventArgs e)
- {
- this.binaryClass.loadParams();
- }
- private bool bcBinaryChecked()
- {
- return bc != null && bc.BinaryChecked;
- }
- private bool bcOriginChecked()
- {
- return bc != null && bc.OriginChecked;
- }
- /// <summary>
- /// 参数改变时,重新处理图像
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- AppCommon appCommonDisplay = new AppCommon();
- private void bClassBinaryImplFinishAction(object sender, EventArgs e)
- {
- if (this.documentWorkspace.CompositionSurface == null)
- return;
- sum++;
- if (bcBinaryChecked())
- {
- if (bcOriginChecked())
- {
- this.documentWorkspace.PhaseModels[1].choise = false;
- }
- else
- {
- this.documentWorkspace.PhaseModels[1].choise = true;
- }
- ResetAreaAndContent();
- ReloadDebrisSelection();
- changeColor = false;
- this.documentWorkspace.PhaseModels[0].choise = false;
- }
- else
- {
- this.documentWorkspace.PhaseModels[0].choise = false;
- this.documentWorkspace.PhaseModels[1].choise = false;
- appCommonDisplay.DisplayData(this.dataGridView1, false);
- }
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 相颜色点击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void bcPanelColorClickAction(object sender, EventArgs e)
- {
- this.colorsForm1.UserPrimaryColor = ColorBgra.FromColor(bc.BinaryBackColor);
- this.colorsForm1.ShowDialog();
- }
- /// <summary>
- /// 显示原图/原图+二值图
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void bcOriginCheckedChanged(object sender, EventArgs e)
- {
- if (!bcOriginChecked())
- {
- if (bcBinaryChecked())
- {
- //this.documentWorkspace.PhaseModels[0].choise = false;
- this.documentWorkspace.PhaseModels[1].choise = true;
- appCommonDisplay.DisplayData(this.dataGridView1, true);
- }
- }
- else
- {
- this.documentWorkspace.PhaseModels[0].choise = false;
- this.documentWorkspace.PhaseModels[1].choise = false;
- appCommonDisplay.DisplayData(this.dataGridView1, false);
- }
- this.documentWorkspace.Refresh();
- }
- #endregion
- /// <summary>
- /// 初始化图片列表数据
- /// </summary>
- public void InitPicList()
- {
- //初始化图片列表
- for (int i = 0; i < this.appWorkspace.DocumentWorkspaces.Length; i++)
- {
- this.imageList1.Images.Add("img" + i, this.appWorkspace.DocumentWorkspaces[i].BinarizationThumbnail);
- this.listView1.Items.Add("", i);
- this.listView1.Items[i].ImageIndex = i;
- this.listView1.Items[i].Text = this.appWorkspace.DocumentWorkspaces[i].GetFriendlyName();
- this.listView1.Items[i].Name = this.appWorkspace.DocumentWorkspaces[i].GetFriendlyName();
- if (this.appWorkspace.DocumentWorkspaces[i].Equals(this.appWorkspace.ActiveDocumentWorkspace))
- {
- defaultIndex = i;
- }
- }
- this.Shown += ShowImgEvent;
- }
- /// <summary>
- /// 初始化表头
- /// </summary>
- private void InitGridHeader()
- {
- //
- //结果展示表
- //
- this.dataGridView1.Columns[0].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView1.Columns[1].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView1.Columns[2].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView1.Columns[3].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView1.Columns[4].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView1.Columns[5].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView1.Columns[6].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView1.Columns[7].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView1.Columns[8].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView1.Columns[9].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView1.Columns[10].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- //
- //分析结果表
- //
- this.dataGridView2.Columns[0].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[1].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[2].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[3].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[4].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[5].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[6].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[7].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[8].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[9].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[10].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- this.dataGridView2.Columns[11].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
- //
- //左下表
- //
- this.listView2.View = View.Details;
- ColumnHeader header0 = new ColumnHeader();
- header0.Text = PdnResources.GetString("Menu.Imagelist.Text");
- header0.Width = 175;
- this.listView2.Columns.Add(header0);
- }
- /// <summary>
- /// 初始化画布按键功能
- /// </summary>
- private void InitCommonButtonEvent()
- {
- this.commonControlButtons.zoomInButton.Click += new EventHandler(zoomInButton_Click);
- this.commonControlButtons.zoomOutButton.Click += new EventHandler(zoomOutButton_Click);
- this.commonControlButtons.zoomToWindowButton.Click += new EventHandler(zoomToWindowButton_Click);
- this.commonControlButtons.actualSizeButton.Click += new EventHandler(actualSizeButton_Click);
- this.commonControlButtons.pointerButton.Click += new EventHandler(pointerButton_Click);
- this.commonControlButtons.mobileModeButton.Click += new EventHandler(mobileModeButton_Click);
- }
- private void zoomInButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ZoomIn();
- }
- private void zoomOutButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ZoomOut();
- }
- private void zoomToWindowButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ZoomBasis = ZoomBasis.FitToWindow;
- }
- private void actualSizeButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ZoomBasis = ZoomBasis.ScaleFactor;
- this.documentWorkspace.ScaleFactor = ScaleFactor.OneToOne;
- }
- private void pointerButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ActiveTool = Annotation.Enum.DrawToolType.Pointer;
- }
- private void mobileModeButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ActiveTool = Annotation.Enum.DrawToolType.MoveMode;
- }
- /// <summary>
- /// 添加画布绑定事件
- /// </summary>
- private void AddPictureBoxEvent()
- {
- this.documentWorkspace.panel.Paint += new PaintEventHandler(this.BoxPaintHandler);
- }
- /// <summary>
- /// 绘制事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void BoxPaintHandler(object sender, PaintEventArgs e)
- {
- if (this.documentWorkspace.CompositionSurface != null)
- {
- Rectangle rc = this.documentWorkspace.panel.ClientRectangle;
- int width = (int)(this.documentWorkspace.CompositionSurface.Width * this.documentWorkspace.ScaleFactor.Ratio);
- int height = (int)(this.documentWorkspace.CompositionSurface.Height * this.documentWorkspace.ScaleFactor.Ratio);
- int x = (rc.Width < width) ? this.documentWorkspace.panel.AutoScrollPosition.X : (rc.Width - width) / 2;
- int y = (rc.Height < height) ? this.documentWorkspace.panel.AutoScrollPosition.Y : (rc.Height - height) / 2;
- e.Graphics.TranslateTransform(x, y);
- e.Graphics.ScaleTransform((float)this.documentWorkspace.ScaleFactor.Ratio, (float)this.documentWorkspace.ScaleFactor.Ratio);
- Draw(e.Graphics);
- e.Graphics.ScaleTransform(1 / (float)this.documentWorkspace.ScaleFactor.Ratio, 1 / (float)this.documentWorkspace.ScaleFactor.Ratio);
- e.Graphics.TranslateTransform(-x, -y);
- }
- }
- /// <summary>
- /// 绘制
- /// </summary>
- private void Draw(Graphics graphics)
- {
- graphics.SmoothingMode = SmoothingMode.AntiAlias;
- Font font = new Font(this.fontStyle, this.fontSize);
- Brush brush = new SolidBrush(this.fontColor);
- //显示圆形系数
- if (this.checkBox4.Checked && !bcOriginChecked() && bcBinaryChecked())
- {
- if(this.ballPoint != null && this.ballPoint.Count > 0)
- {
- for(int i = 0; i < this.ballPoint.Count; i++)
- {
- graphics.DrawString(Math.Round(this.ballCircleList[i], Convert.ToInt32(this.numericUpDown1.Value)) + "", font, brush,
- new PointF(this.ballPoint[i][this.ballPoint[i].Count - 1].X, this.ballPoint[i][this.ballPoint[i].Count - 1].Y));
- }
- }
- if (this.groupPoint != null && this.groupPoint.Count > 0)
- {
- for (int i = 0; i < this.groupPoint.Count; i++)
- {
- graphics.DrawString(Math.Round(this.groupCircleList[i], Convert.ToInt32(this.numericUpDown1.Value)) + "", font, brush,
- new PointF(this.groupPoint[i][this.groupPoint[i].Count - 1].X, this.groupPoint[i][this.groupPoint[i].Count - 1].Y));
- }
- }
- if (this.vermicularPoint != null && this.vermicularPoint.Count > 0)
- {
- for (int i = 0; i < this.vermicularPoint.Count; i++)
- {
- graphics.DrawString(Math.Round(this.vermicularCircleList[i], Convert.ToInt32(this.numericUpDown1.Value)) + "", font, brush,
- new PointF(this.vermicularPoint[i][this.vermicularPoint[i].Count - 1].X, this.vermicularPoint[i][this.vermicularPoint[i].Count - 1].Y));
- }
- }
- }
- brush.Dispose();
- font.Dispose();
- }
- /// <summary>
- /// 添加内容单元格
- /// </summary>
- /// <param name="text"></param>
- /// <param name="tag"></param>
- /// <returns></returns>
- private DataGridViewTextBoxCell CreateTextBoxCell(string text, object tag)
- {
- DataGridViewTextBoxCell textboxcell = new DataGridViewTextBoxCell();
- textboxcell.Value = text;
- textboxcell.Tag = tag;
- return textboxcell;
- }
- /// <summary>
- /// 设置按钮
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button1_Click(object sender, EventArgs e)
- {
- AnalyzeSettingDialog metallographicMethodSetDialog = null;
- if (IronType == 1)
- {
- metallographicMethodSetDialog = new AnalyzeSettingDialog(this, "Template.Manager.item3.VermiculateCastIronGBT26656");
- }
- else if (IronType == 2)
- {
- metallographicMethodSetDialog = new AnalyzeSettingDialog(this, "Template.Manager.item3.VermiculateCastIronJBT3829");
- }
- if (metallographicMethodSetDialog.hasModule)
- {
- metallographicMethodSetDialog.StartPosition = FormStartPosition.CenterScreen;
- metallographicMethodSetDialog.ShowDialog();
- }
- else
- {
- metallographicMethodSetDialog = null;
- }
- }
- DialogResult dr;
- /// <summary>
- /// 保存结果按钮
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button2_Click(object sender, EventArgs e)
- {
- if (this.listView1.SelectedItems.Count > 0)
- {
- string imgName = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetFriendlyName();
- string tag = this.imageList1.Images.Keys[this.listView1.SelectedItems[0].Index];
- bool replace = false;
- int rowIndex = 0;
- if (this.dataGridView1.Rows.Count > 0)
- {
- if (this.listView2.Items.Count > 0)
- {
- foreach (ListViewItem item in this.listView2.Items)
- {
- if (!blSaveAll && item.Name.Equals(tag))
- {
- dr = MessageBox.Show(PdnResources.GetString("Menu.Theanalysisreertoreplaceit.text") + "?", PdnResources.GetString("Menu.hint.text"), MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
- break;
- }
- }
- foreach (ListViewItem item in this.listView2.Items)
- {
- if (item.Name.Equals(tag))
- {
- if (dr == DialogResult.OK || blSaveAll)
- {
- replace = true;
- }
- else
- {
- return;
- }
- break;
- }
- }
- }
- //有重名需要替换
- if (replace)
- {
- for (int i = 0; i < this.resultTableList.Count; i++)
- {
- if (this.resultTableList[i].TableName.Equals(tag))
- {
- rowIndex = i;
- this.resultTableList.Remove(this.resultTableList[i]);
- resultTableList.Insert(rowIndex, dtResult);
- }
- }
- }
- //新增
- else
- {
- ListViewItem listViewItem = new ListViewItem();
- listViewItem.Name = tag;
- listViewItem.SubItems[0].Text = imgName;
- this.listView2.Items.Add(listViewItem);
- this.listView2.SelectedItems.Clear();
- this.listView2.Items[this.listView2.Items.Count - 1].Selected = true;
- resultTableList.Insert(rowIndex, dtResult);
- }
- RefreshDataGridView2();
- //保存处理后的图片
- double pantographRatio = (double)this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRulerMultiple(MeasurementUnit.Micron);//标尺*放大倍数
- List<Bitmap> tempBit = new List<Bitmap>();
- Bitmap originalBit = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].CompositionSurface.CreateAliasedBitmap();
- originalBit.Tag = pantographRatio;
- tempBit.Add(originalBit);
- Bitmap processedBit = BitmapConverter.ToBitmap(this.documentWorkspace.PhaseModels[1].mat);
- Bitmap newBit = originalBit.Clone(new Rectangle(0, 0, originalBit.Width, originalBit.Height), originalBit.PixelFormat);
- Graphics graphics = Graphics.FromImage(newBit);
- graphics.DrawImage(processedBit, new PointF(0, 0));
- Draw(graphics);
- newBit.Tag = pantographRatio;
- tempBit.Add(newBit);
- if (bitDic.ContainsKey(tag))
- bitDic[tag] = tempBit;
- else
- bitDic.Add(tag, tempBit);
- //拼接中间数据
- List<List<string>> dataList = new List<List<string>>();
- List<string> columnName = new List<string>();
- columnName.Add(PdnResources.GetString("Menu.Imagement.Measurementlist.ordernumber.text"));
- columnName.Add(PdnResources.GetString("Menu.area.text"));
- columnName.Add(PdnResources.GetString("Menu.Maximumcaliperdiameter.text"));
- columnName.Add(PdnResources.GetString("Menu.Circularcoefficient.Text"));
- dataList.Add(columnName);
- if (this.tempArea.Count > 0)
- {
- for (int i = 0; i < this.tempArea.Count; i++)
- {
- List<string> strList = new List<string>();
- strList.Add((i + 1).ToString());
- strList.Add(this.tempArea[i]);
- strList.Add(this.maxCaliperDiameter[i]);
- strList.Add(this.circleCoefficientList[i]);
- dataList.Add(strList);
- }
- }
- bool isExist = false;//是否已存在进行替换
- int modelIndex = -1;//要替换的下标
- for (int j = 0; j < tempDataModel.Count; j++)
- {
- if (tempDataModel[j].tagName.Equals(tag))
- {
- isExist = true;
- modelIndex = j;
- break;
- }
- }
- if (isExist && modelIndex > -1)
- tempDataModel[modelIndex].dataList = dataList;
- else
- {
- ExportProjectModel newModel = new ExportProjectModel();
- newModel.tagName = tag;
- newModel.picName = imgName;
- newModel.dataList = dataList;
- tempDataModel.Add(newModel);
- }
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Noinformationtosave.text"));
- }
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Pleaseselectapictaurefirst.Text"));
- }
- }
- /// <summary>
- /// 刷新分析结果表
- /// </summary>
- private void RefreshDataGridView2()
- {
- //需要计算平均值的集合
- List<double> lstBallCircleArea = new List<double>();
- List<double> lstBallCircle = new List<double>();
- List<double> lstGroupCircleArea = new List<double>();
- List<double> lstGroupCircle = new List<double>();
- List<double> lstVermicularCircleArea = new List<double>();
- List<double> lstVermicularCircle = new List<double>();
- List<double> lstArce = new List<double>();
- List<double> lstContent = new List<double>();
- List<double> lstCreepRatio = new List<double>();
- //综合平均值
- double avgBallCircleArea = 0;
- double avgBallCircle = 0;
- double avgGroupCircleArea = 0;
- double avgGroupCircle = 0;
- double avgVermicularCircleArea = 0;
- double avgVermicularCircle = 0;
- double avgArce = 0;
- double avgContent = 0;
- double avgCreepRatio = 0;
- if (resultTableList.Count > 0)
- {
- dataGridView2.Rows.Clear();
- dataGridView3.Rows.Clear();
- if (this.showAll)
- {
- //dataGridView2.Rows.Clear();
- int i = 0;
- for (int k = 0; k < resultTableList.Count; k++)
- {
- dataGridView2.Rows.Add(resultTableList[k].Rows.Count);//增加同等数量的行数
- foreach (DataRow row in resultTableList[k].Rows)//逐个读取单元格的内容;
- {
- DataGridViewRow r1 = dataGridView2.Rows[i];
- r1.Cells[0].Value = row.RowState.ToString();
- for (int j = 0; j < resultTableList[k].Columns.Count; j++)
- {
- if (j == 0 || j == 1 || j == 11)
- {
- r1.Cells[j].Value = row[j].ToString();
- }
- else
- {
- r1.Cells[j].Value = Math.Round(double.Parse(string.IsNullOrEmpty(row[j].ToString()) ? "0" :
- row[j].ToString()), Convert.ToInt32(this.numericUpDown1.Value));
- }
- //r1.Cells[j].Value = row[j];
- if (!row[1].Equals(PdnResources.GetString("Menu.Image.Average.Text")))
- {
- if (j == 2)
- {
- lstBallCircleArea.Add(double.Parse(row[j].ToString()));
- }
- if (j == 3)
- {
- lstBallCircle.Add(double.Parse(row[j].ToString()));
- }
- if (j == 4)
- {
- lstGroupCircleArea.Add(double.Parse(row[j].ToString()));
- }
- if (j == 5)
- {
- lstGroupCircle.Add(double.Parse(row[j].ToString()));
- }
- if (j == 6)
- {
- lstVermicularCircleArea.Add(double.Parse(row[j].ToString()));
- }
- if (j == 7)
- {
- lstArce.Add(double.Parse(row[j].ToString()));
- }
- if (j == 8)
- {
- lstVermicularCircle.Add(double.Parse(row[j].ToString()));
- }
- if (j == 9)
- {
- lstContent.Add(double.Parse(row[j].ToString()));
- }
- if (j == 10)
- {
- lstCreepRatio.Add(double.Parse(row[j].ToString()));
- }
- }
- }
- i++;
- }
- }
- }
- else
- {
- //dataGridView2.Rows.Clear();
- if (this.listView2.SelectedItems != null && this.listView2.SelectedItems.Count > 0)
- {
- int h = 0;
- for (int i = 0; i < this.listView2.SelectedItems.Count; i++)
- {
- string tableName = this.listView2.SelectedItems[i].Name;
- foreach (DataTable dt in resultTableList)
- {
- if (dt.TableName.Equals(tableName))
- {
- dataGridView2.Rows.Add(dt.Rows.Count);//增加同等数量的行数
- foreach (DataRow row in dt.Rows)//逐个读取单元格的内容;
- {
- DataGridViewRow r1 = dataGridView2.Rows[h];
- r1.Cells[0].Value = row.RowState.ToString();
- for (int j = 0; j < dt.Columns.Count; j++)
- {
- if (j == 0 || j == 1 || j == 11)
- {
- r1.Cells[j].Value = row[j].ToString();
- }
- else
- {
- r1.Cells[j].Value = Math.Round(double.Parse(string.IsNullOrEmpty(row[j].ToString()) ? "0" :
- row[j].ToString()), Convert.ToInt32(this.numericUpDown1.Value));
- }
- //r1.Cells[j].Value = row[j];
- if (!row[1].Equals(PdnResources.GetString("Menu.Image.Average.Text")))
- {
- if (j == 2)
- {
- lstBallCircleArea.Add(double.Parse(row[j].ToString()));
- }
- if (j == 3)
- {
- lstBallCircle.Add(double.Parse(row[j].ToString()));
- }
- if (j == 4)
- {
- lstGroupCircleArea.Add(double.Parse(row[j].ToString()));
- }
- if (j == 5)
- {
- lstGroupCircle.Add(double.Parse(row[j].ToString()));
- }
- if (j == 6)
- {
- lstVermicularCircleArea.Add(double.Parse(row[j].ToString()));
- }
- if (j == 7)
- {
- lstArce.Add(double.Parse(row[j].ToString()));
- }
- if (j == 8)
- {
- lstVermicularCircle.Add(double.Parse(row[j].ToString()));
- }
- if (j == 9)
- {
- lstContent.Add(double.Parse(row[j].ToString()));
- }
- if (j == 10)
- {
- lstCreepRatio.Add(double.Parse(row[j].ToString()));
- }
- }
- }
- h++;
- }
- }
- }
- }
- }
- }
- if (dataGridView2.Rows.Count > 0)
- {
- if (lstBallCircleArea.Count > 0)
- {
- avgBallCircleArea = (double)lstBallCircleArea.Average();
- }
- if (lstBallCircle.Count > 0)
- {
- avgBallCircle = (double)lstBallCircle.Average();
- }
- if (lstGroupCircleArea.Count > 0)
- {
- avgGroupCircleArea = (double)lstGroupCircleArea.Average();
- }
- if (lstGroupCircle.Count > 0)
- {
- avgGroupCircle = (double)lstGroupCircle.Average();
- }
- if (lstVermicularCircleArea.Count > 0)
- {
- avgVermicularCircleArea = (double)lstVermicularCircleArea.Average();
- }
- if (lstVermicularCircle.Count > 0)
- {
- avgVermicularCircle = (double)lstVermicularCircle.Average();
- }
- if (lstArce.Count > 0)
- {
- avgArce = (double)lstArce.Average();
- }
- if (lstContent.Count > 0)
- {
- avgContent = (double)lstContent.Average();
- }
- if (lstCreepRatio.Count > 0)
- {
- avgCreepRatio = (double)lstCreepRatio.Average();
- }
- string avgLevel = string.Empty;
- if (avgCreepRatio >= 0.95)
- avgLevel = PdnResources.GetString("Menu.creep.Text")+"95";
- else if (avgCreepRatio < 0.95 && avgCreepRatio >= 0.9)
- avgLevel = PdnResources.GetString("Menu.creep.Text")+"90";
- else if (avgCreepRatio < 0.9 && avgCreepRatio >= 0.85)
- avgLevel = PdnResources.GetString("Menu.creep.Text")+"85";
- else if (avgCreepRatio < 0.85 && avgCreepRatio >= 0.8)
- avgLevel = PdnResources.GetString("Menu.creep.Text")+"80";
- else if (avgCreepRatio < 0.8 && avgCreepRatio >= 0.7)
- avgLevel = PdnResources.GetString("Menu.creep.Text")+"70";
- else if (avgCreepRatio < 0.7 && avgCreepRatio >= 0.6)
- avgLevel = PdnResources.GetString("Menu.creep.Text")+"60";
- else if (avgCreepRatio < 0.6 && avgCreepRatio >= 0.5)
- avgLevel = PdnResources.GetString("Menu.creep.Text")+"50";
- else if (avgCreepRatio < 0.5 && avgCreepRatio >= 0.4)
- avgLevel = PdnResources.GetString("Menu.creep.Text")+"40";
- else
- avgLevel = PdnResources.GetString("Menu.Theunknown.Text");
- this.dataGridView3.Rows.Add(PdnResources.GetString("Menu.comprehensive.text"), PdnResources.GetString("Menu.Comprehensivaverage.text"), Math.Round(double.Parse(string.IsNullOrEmpty(avgBallCircleArea.ToString()) ? "0" : avgBallCircleArea.ToString()), Convert.ToInt32(this.numericUpDown1.Value)), Math.Round(double.Parse(string.IsNullOrEmpty(avgBallCircle.ToString()) ? "0" : avgBallCircle.ToString()), Convert.ToInt32(this.numericUpDown1.Value)), Math.Round(double.Parse(string.IsNullOrEmpty(avgGroupCircleArea.ToString()) ? "0" : avgGroupCircleArea.ToString()), Convert.ToInt32(this.numericUpDown1.Value)), Math.Round(double.Parse(string.IsNullOrEmpty(avgGroupCircle.ToString()) ? "0" : avgGroupCircle.ToString()), Convert.ToInt32(this.numericUpDown1.Value)), Math.Round(double.Parse(string.IsNullOrEmpty(avgVermicularCircleArea.ToString()) ? "0" : avgVermicularCircleArea.ToString()), Convert.ToInt32(this.numericUpDown1.Value)), Math.Round(double.Parse(string.IsNullOrEmpty(avgVermicularCircle.ToString()) ? "0" : avgVermicularCircle.ToString()), Convert.ToInt32(this.numericUpDown1.Value)), Math.Round(double.Parse(string.IsNullOrEmpty(avgArce.ToString()) ? "0" : avgArce.ToString()), Convert.ToInt32(this.numericUpDown1.Value)), Math.Round(double.Parse(string.IsNullOrEmpty(avgContent.ToString()) ? "0" : avgContent.ToString()), Convert.ToInt32(this.numericUpDown1.Value)), Math.Round(double.Parse(string.IsNullOrEmpty(avgCreepRatio.ToString()) ? "0" : avgCreepRatio.ToString()), Convert.ToInt32(this.numericUpDown1.Value)), avgLevel);
- }
- }
- }
- /// <summary>
- /// 全部显示按钮
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button6_Click(object sender, EventArgs e)
- {
- if(this.button6.Text == PdnResources.GetString("Menu.Showall.text"))
- {
- this.button6.Text = PdnResources.GetString("Menu.Cancelshowall.text");
- this.showAll = true;
- RefreshDataGridView2();
- }
- else if (this.button6.Text == PdnResources.GetString("Menu.Cancelshowall.text"))
- {
- this.button6.Text = PdnResources.GetString("Menu.Showall.text");
- this.showAll = false;
- RefreshDataGridView2();
- }
- }
- /// <summary>
- /// 删除按钮
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button7_Click(object sender, EventArgs e)
- {
- if(this.listView2.SelectedItems != null && this.listView2.SelectedItems.Count > 0)
- {
- DialogResult dr = MessageBox.Show(PdnResources.GetString("Menu.Determineallanalysisrlete.text")+"?", PdnResources.GetString("Menu.alert.text"), MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
- if (dr == DialogResult.OK)
- {
- for (int i = 0; i < this.listView2.SelectedItems.Count; i++)
- {
- string tableName = this.listView2.SelectedItems[i].Name;
- foreach (DataTable dt in resultTableList)
- {
- if (dt.TableName.Equals(tableName))
- {
- resultTableList.Remove(dt);
- break;
- }
- }
- if (bitDic.ContainsKey(tableName))
- bitDic.Remove(tableName);
- }
- foreach (ListViewItem item in this.listView2.Items)
- {
- if (item.Selected)
- this.listView2.Items.Remove(item);
- }
- RefreshDataGridView2();
- }
- }
- }
- /// <summary>
- /// 生成报告按钮
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button8_Click(object sender, EventArgs e)
- {
- if (dataGridView2.Rows.Count == 0)
- {
- MessageBox.Show(PdnResources.GetString("Menu.Noanalysineratereport.text")+"!");
- return;
- }
- if (this.checkBox1.Checked)
- this.button1.PerformClick();
- if (this.analyzeSettingModel != null && !string.IsNullOrEmpty(this.analyzeSettingModel.analyzeClassify))
- {
- //获取word书签与excel单元格的关系,以字典方式存储
- List<mic_module_infos> mic_module_infos = mic_module_infos_BLL.FindAll().FindAll(a => a.analyze_classify == this.analyzeSettingModel.analyzeClassify);
- Dictionary<string, string> tagInfos = new Dictionary<string, string>();
- if (mic_module_infos != null && mic_module_infos.Count > 0)
- {
- foreach (mic_module_infos info in mic_module_infos)
- {
- tagInfos.Add(info.tag_name, info.cell_position);
- }
- }
- //分析结果
- List<List<string>> analysisContent = new List<List<string>>();
- List<string> contentHead = new List<string>();
- contentHead.Add(PdnResources.GetString("Menu.picture.Text"));
- contentHead.Add(PdnResources.GetString("Menu.view.text"));
- contentHead.Add(PdnResources.GetString("Menu.Sphericalarea.text"));
- contentHead.Add(PdnResources.GetString("Menu.Numberofballs.text"));
- contentHead.Add(PdnResources.GetString("Menu.Massandflocculentarea.text"));
- contentHead.Add(PdnResources.GetString("Menu.Numberofclustersandclusters.text"));
- contentHead.Add(PdnResources.GetString("Menu.Wormlikearea.text"));
- contentHead.Add(PdnResources.GetString("Menu.Wormlikenumber.text"));
- contentHead.Add(PdnResources.GetString("Menu.Thetotalarea.text"));
- contentHead.Add(PdnResources.GetString("Menu.Graphitecontent.text"));
- contentHead.Add(PdnResources.GetString("Menu.Creepingrate.text"));
- contentHead.Add(PdnResources.GetString("Menu.Creeplevel.text"));
- analysisContent.Add(contentHead);
- foreach (DataGridViewRow item in this.dataGridView2.Rows)
- {
- List<string> content = new List<string>();
- content.Add(item.Cells[0].Value.ToString());
- content.Add(item.Cells[1].Value.ToString());
- content.Add(item.Cells[2].Value.ToString());
- content.Add(item.Cells[3].Value.ToString());
- content.Add(item.Cells[4].Value.ToString());
- content.Add(item.Cells[5].Value.ToString());
- content.Add(item.Cells[6].Value.ToString());
- content.Add(item.Cells[7].Value.ToString());
- content.Add(item.Cells[8].Value.ToString());
- content.Add(item.Cells[9].Value.ToString());
- content.Add(item.Cells[10].Value.ToString());
- content.Add(item.Cells[11].Value.ToString());
- analysisContent.Add(content);
- }
- analysisContent.Add(new List<string>() { "\r" });
- foreach (DataGridViewRow item in this.dataGridView3.Rows)
- {
- List<string> content = new List<string>();
- content.Add(item.Cells[0].Value.ToString());
- content.Add(item.Cells[1].Value.ToString());
- content.Add(item.Cells[2].Value.ToString());
- content.Add(item.Cells[3].Value.ToString());
- content.Add(item.Cells[4].Value.ToString());
- content.Add(item.Cells[5].Value.ToString());
- content.Add(item.Cells[6].Value.ToString());
- content.Add(item.Cells[7].Value.ToString());
- content.Add(item.Cells[8].Value.ToString());
- content.Add(item.Cells[9].Value.ToString());
- content.Add(item.Cells[10].Value.ToString());
- content.Add(item.Cells[11].Value.ToString());
- analysisContent.Add(content);
- }
- //图片
- bitList = new List<Bitmap>();
- if (this.showAll)
- {
- foreach(KeyValuePair<string, List<Bitmap>> kv in this.bitDic)
- {
- bitList.Add(kv.Value[0]);
- bitList.Add(kv.Value[1]);
- }
- }
- else
- {
- if (this.listView2.SelectedItems != null && this.listView2.SelectedItems.Count > 0)
- {
- foreach (ListViewItem item in this.listView2.SelectedItems)
- {
- if (bitDic.ContainsKey(item.Name))
- {
- bitList.Add(bitDic[item.Name][0]);
- bitList.Add(bitDic[item.Name][1]);
- }
- }
- }
- }
-
- this.appWorkspace.CreateAnalysisReport(this.analyzeSettingModel, analysisContent, bitList, tagInfos);
- }
- else
- MessageBox.Show(PdnResources.GetString("Menu.Pleasesettheanalysisreportfirst.text")+"!");
- }
- /// <summary>
- /// 导出结果按钮
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button9_Click(object sender, EventArgs e)
- {
- if (this.dataGridView2.Rows.Count > 0)
- {
- SaveFileDialog exe = new SaveFileDialog();
- exe.Filter = "Execl files (*.xlsx)|*.xlsx";
- exe.FilterIndex = 0;
- exe.RestoreDirectory = true;
- exe.Title = "Export Excel File";
- exe.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
- if (IronType == 1)
- {
- exe.FileName = PdnResources.GetString("Menu.DedicatedAnalysis.BlackMetal.VermiculateCastIron.Text") + "(GBT26656" + PdnResources.GetString("Menu.Creeplevel.text") + ")" + PdnResources.GetString("Menu.Analysisresult.text") + DateTime.Now.ToString("yyyyMMddhhmmss");
- }
- else if (IronType == 2)
- {
- exe.FileName = PdnResources.GetString("Menu.DedicatedAnalysis.BlackMetal.VermiculateCastIron.Text") + "(JBT3829" + PdnResources.GetString("Menu.Creeplevel.text") + ")" + PdnResources.GetString("Menu.Analysisresult.text") + DateTime.Now.ToString("yyyyMMddhhmmss");
- }
- DialogResult dr = exe.ShowDialog();
- if (dr != DialogResult.OK)
- return;
- DataTable dtb = new DataTable();
- dtb.Columns.Add(PdnResources.GetString("Menu.picture.Text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.view.text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.Sphericalarea.text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.Numberofballs.text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.Massandflocculentarea.text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.Numberofclustersandclusters.text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.Wormlikearea.text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.Wormlikenumber.text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.Thetotalarea.text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.Graphitecontent.text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.Creepingrate.text"));
- dtb.Columns.Add(PdnResources.GetString("Menu.Creeplevel.text"));
- for (int i = 0; i < this.dataGridView2.Rows.Count; i++)
- {
- DataRow dataRow = dtb.NewRow();
- dataRow[PdnResources.GetString("Menu.picture.Text")] = this.dataGridView2.Rows[i].Cells[0].Value;
- dataRow[PdnResources.GetString("Menu.view.text")] = this.dataGridView2.Rows[i].Cells[1].Value;
- dataRow[PdnResources.GetString("Menu.Sphericalarea.text")] = this.dataGridView2.Rows[i].Cells[2].Value;
- dataRow[PdnResources.GetString("Menu.Numberofballs.text")] = this.dataGridView2.Rows[i].Cells[3].Value;
- dataRow[PdnResources.GetString("Menu.Massandflocculentarea.text")] = this.dataGridView2.Rows[i].Cells[4].Value;
- dataRow[PdnResources.GetString("Menu.Numberofclustersandclusters.text")] = this.dataGridView2.Rows[i].Cells[5].Value;
- dataRow[PdnResources.GetString("Menu.Wormlikearea.text")] = this.dataGridView2.Rows[i].Cells[6].Value;
- dataRow[PdnResources.GetString("Menu.Wormlikenumber.text")] = this.dataGridView2.Rows[i].Cells[7].Value;
- dataRow[PdnResources.GetString("Menu.Thetotalarea.text")] = this.dataGridView2.Rows[i].Cells[8].Value;
- dataRow[PdnResources.GetString("Menu.Graphitecontent.text")] = this.dataGridView2.Rows[i].Cells[9].Value;
- dataRow[PdnResources.GetString("Menu.Creepingrate.text")] = this.dataGridView2.Rows[i].Cells[10].Value;
- dataRow[PdnResources.GetString("Menu.Creeplevel.text")] = this.dataGridView2.Rows[i].Cells[11].Value;
- dtb.Rows.Add(dataRow);
- }
- for (int i = 0; i < this.dataGridView3.Rows.Count; i++)
- {
- DataRow dataRow = dtb.NewRow();
- dataRow[PdnResources.GetString("Menu.picture.Text")] = this.dataGridView3.Rows[i].Cells[0].Value;
- dataRow[PdnResources.GetString("Menu.view.text")] = this.dataGridView3.Rows[i].Cells[1].Value;
- dataRow[PdnResources.GetString("Menu.Sphericalarea.text")] = this.dataGridView3.Rows[i].Cells[2].Value;
- dataRow[PdnResources.GetString("Menu.Numberofballs.text")] = this.dataGridView3.Rows[i].Cells[3].Value;
- dataRow[PdnResources.GetString("Menu.Massandflocculentarea.text")] = this.dataGridView3.Rows[i].Cells[4].Value;
- dataRow[PdnResources.GetString("Menu.Numberofclustersandclusters.text")] = this.dataGridView3.Rows[i].Cells[5].Value;
- dataRow[PdnResources.GetString("Menu.Wormlikearea.text")] = this.dataGridView3.Rows[i].Cells[6].Value;
- dataRow[PdnResources.GetString("Menu.Wormlikenumber.text")] = this.dataGridView3.Rows[i].Cells[7].Value;
- dataRow[PdnResources.GetString("Menu.Thetotalarea.text")] = this.dataGridView3.Rows[i].Cells[8].Value;
- dataRow[PdnResources.GetString("Menu.Graphitecontent.text")] = this.dataGridView3.Rows[i].Cells[9].Value;
- dataRow[PdnResources.GetString("Menu.Creepingrate.text")] = this.dataGridView3.Rows[i].Cells[10].Value;
- dataRow[PdnResources.GetString("Menu.Creeplevel.text")] = this.dataGridView3.Rows[i].Cells[11].Value;
- dtb.Rows.Add(dataRow);
- }
- //DataTable dtb1 = new DataTable();
- //dtb1.Columns.Add(PdnResources.GetString("Menu.picture.Text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.view.text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.Sphericalarea.text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.Numberofballs.text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.Massandflocculentarea.text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.Numberofclustersandclusters.text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.Wormlikearea.text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.Wormlikenumber.text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.Thetotalarea.text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.Graphitecontent.text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.Creepingrate.text"));
- //dtb1.Columns.Add(PdnResources.GetString("Menu.Creeplevel.text"));
- //for (int i = 0; i < this.dataGridView3.Rows.Count; i++)
- //{
- // DataRow dataRow = dtb1.NewRow();
- // dataRow[PdnResources.GetString("Menu.picture.Text")] = this.dataGridView3.Rows[i].Cells[0].Value;
- // dataRow[PdnResources.GetString("Menu.view.text")] = this.dataGridView3.Rows[i].Cells[1].Value;
- // dataRow[PdnResources.GetString("Menu.Sphericalarea.text")] = this.dataGridView3.Rows[i].Cells[2].Value;
- // dataRow[PdnResources.GetString("Menu.Numberofballs.text")] = this.dataGridView3.Rows[i].Cells[3].Value;
- // dataRow[PdnResources.GetString("Menu.Massandflocculentarea.text")] = this.dataGridView3.Rows[i].Cells[4].Value;
- // dataRow[PdnResources.GetString("Menu.Numberofclustersandclusters.text")] = this.dataGridView3.Rows[i].Cells[5].Value;
- // dataRow[PdnResources.GetString("Menu.Wormlikearea.text")] = this.dataGridView3.Rows[i].Cells[6].Value;
- // dataRow[PdnResources.GetString("Menu.Wormlikenumber.text")] = this.dataGridView3.Rows[i].Cells[7].Value;
- // dataRow[PdnResources.GetString("Menu.Thetotalarea.text")] = this.dataGridView3.Rows[i].Cells[8].Value;
- // dataRow[PdnResources.GetString("Menu.Graphitecontent.text")] = this.dataGridView3.Rows[i].Cells[9].Value;
- // dataRow[PdnResources.GetString("Menu.Creepingrate.text")] = this.dataGridView3.Rows[i].Cells[10].Value;
- // dataRow[PdnResources.GetString("Menu.Creeplevel.text")] = this.dataGridView3.Rows[i].Cells[11].Value;
- // dtb1.Rows.Add(dataRow);
- //}
- List<DataTable> list = new List<DataTable>();
- list.Add(dtb);
- //list.Add(dtb1);
- this.appWorkspace.ExportDataToExcelWithProgress(list, exe.FileName, true, false, true);
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Noanalysineratereport.text") + "!");
- }
- }
- double bitArea = 0;
- /// <summary>
- /// 图像索引切换选中事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- int sum;//判断是否二值过
- private void listView1_SelectedIndexChanged(object sender, EventArgs e)
- {
- if (this.listView1.FocusedItem != null && this.listView1.FocusedItem.Selected)
- {
- //获取标尺-微米
- unitLength = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRuler(MeasurementUnit.Micron);
- GetListParamModel();
- sum = 0;
- //清除计算并存储的数据
- ballPoint = null;
- groupPoint = null;
- vermicularPoint = null;
- ballCircleList = null;
- groupCircleList = null;
- vermicularCircleList = null;
- this.dataGridView1.Rows.Clear();
- //this.documentWorkspace.PhaseModels.Clear();
- this.commonControlButtons.Visible = true;
- this.documentWorkspace.GraphicsList = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GraphicsList;
- this.bitmap = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].CompositionSurface.CreateAliasedBitmap();
- bitArea = AnalysisTools.GetPointsFromMat(BitmapConverter.ToMat(this.bitmap)) * unitLength * unitLength;
- changeColor = false;
- isFirstSwitch = true;
- //二值化集成5
- binaryClass.listView1_SelectedIndexChanged(this.bitmap, this.imageList1.Images.Keys[this.listView1.FocusedItem.Index]);
- ballCircleArea = 0;
- groupCircleArea = 0;
- vermicularCircleArea = 0;
- if (sum == 0)
- {
- if (bcOriginChecked() || !bcBinaryChecked())
- {
- this.documentWorkspace.PhaseModels[1].choise = false;
- }
- ResetAreaAndContent();
- ReloadDebrisSelection();
- }
- else
- {
- if (bcOriginChecked() || !bcBinaryChecked())
- {
- this.documentWorkspace.PhaseModels[1].choise = false;
- }
- else
- {
- this.documentWorkspace.PhaseModels[1].choise = true;
- }
- this.documentWorkspace.Refresh();
- }
- sum = 0;
- }
- }
- /// <summary>
- /// 计算指定索引列的平均值-暂时没用到
- /// </summary>
- /// <param name="ColumnIndex"></param>
- /// <returns></returns>
- private double CalculateAverage(int ColumnIndex)
- {
- double sum = 0;
- double avg = 0;
- if (this.dataGridView1.Rows.Count > 0)
- {
- for (int i = 0; i < this.dataGridView1.Rows.Count - 1; i++)
- {
- try
- {
- double cellValue = double.Parse(this.dataGridView1.Rows[i].Cells[ColumnIndex].Value.ToString());
- sum += cellValue;
- }
- catch (Exception e)
- {
- continue;
- }
- }
- avg = sum / this.dataGridView1.Rows.Count - 1;
- }
- return avg;
- }
- /// <summary>
- /// 分析结果列表选择切换
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void listView2_SelectedIndexChanged(object sender, EventArgs e)
- {
- if (this.showAll)
- return;
- RefreshDataGridView2();
- }
- /// <summary>
- /// 刷新数据展示表
- /// </summary>
- private void RefreshDataGridView1()
- {
- this.dataGridView1.Rows.Clear();
- if (dtDataGridView1 != null && dtDataGridView1.Rows.Count > 0)
- {
- dataGridView1.Rows.Add(dtDataGridView1.Rows.Count);//增加同等数量的行数
- int i = 0;
- foreach (DataRow row in dtDataGridView1.Rows)//逐个读取单元格的内容;
- {
- DataGridViewRow r1 = dataGridView1.Rows[i];
- r1.Cells[0].Value = row.RowState.ToString();
- for (int j = 0; j < dtDataGridView1.Columns.Count; j++)
- {
- if (j == 0 || j == 10)
- {
- r1.Cells[j].Value = row[j].ToString();
- }
- else
- {
- r1.Cells[j].Value = Math.Round(double.Parse(string.IsNullOrEmpty(row[j].ToString()) ? "0" :
- row[j].ToString()), Convert.ToInt32(this.numericUpDown1.Value));
- }
- }
- i++;
- }
- }
-
- }
- private void colorsForm1Changed(object sender, EventArgs e)
- {
- binaryClass.SetBinaryBackColor(this.colorsForm1.UserPrimaryColor.ToColor());
- this.colorsForm1.Close();
- changeColor = true;
- ReLoadBinarization();
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 小数数字框值改变
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void numericUpDown1_ValueChanged(object sender, EventArgs e)
- {
- if (this.documentWorkspace == null)
- return;
- if (this.numericUpDown1.Value > this.numericUpDown1.Maximum)
- this.numericUpDown1.Value = this.numericUpDown1.Maximum;
- if (this.numericUpDown1.Value < this.numericUpDown1.Minimum)
- this.numericUpDown1.Value = this.numericUpDown1.Minimum;
- RefreshDataGridView1();
- RefreshDataGridView2();
- if (this.checkBox4.Checked)
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 是否筛选
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox3_CheckedChanged(object sender, EventArgs e)
- {
- if (this.documentWorkspace == null || this.documentWorkspace.CompositionSurface == null)
- return;
- if (bcBinaryChecked() && this.checkBox3.Checked)
- {
- ReloadDebrisSelection();
- changeColor = false;
- if (!bcOriginChecked())
- {
- if (bcBinaryChecked())
- {
- this.documentWorkspace.PhaseModels[0].choise = false;
- this.documentWorkspace.PhaseModels[1].choise = true;
- }
- }
- }
- else if (bcBinaryChecked() && !this.checkBox3.Checked)
- {
- changeColor = false;
- ReLoadBinarization();
- if (!bcOriginChecked())
- {
- if (bcBinaryChecked())
- {
- this.documentWorkspace.PhaseModels[0].choise = false;
- this.documentWorkspace.PhaseModels[1].choise = true;
- }
- }
- }
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 二值处理
- /// </summary>
- /// <param name="colorOneStart"></param>
- /// <param name="colorOneEnd"></param>
- /// <param name="phaseColor"></param>
- /// <returns></returns>
- private unsafe Mat Binarization(int colorOneStart, int colorOneEnd, Color phaseColor)
- {
- Mat srcGray;
- if (mat.Type() == MatType.CV_8UC1)
- srcGray = mat;
- else
- srcGray = mat.CvtColor(ColorConversionCodes.BGR2GRAY);
- Mat src = new Mat(mat.Rows, mat.Cols, MatType.CV_8UC4, new Scalar(0, 0, 0, 0));
- int index0 = 0;
- byte* ptr0 = (byte*)mat.Data;
- int index1 = 0;
- byte* ptr1 = (byte*)srcGray.Data;
- int index2 = 0;
- byte* ptr2 = (byte*)src.Data;
- for (int o = 0; o < srcGray.Height; o++)
- {
- for (int p = 0; p < srcGray.Width; p++)
- {
- index0 = (int)((mat.Step() * o) + (p * 4));
- index1 = (int)((srcGray.Step() * o) + (p * 1));
- index2 = (int)((src.Step() * o) + (p * 4));
- if (ptr1[index1] >= colorOneStart && ptr1[index1] <= colorOneEnd)
- {
- if (isHadView)
- {
- if (ptr0[index0 + 3] != 0)
- {
- ptr2[index2] = phaseColor.B;
- ptr2[index2 + 1] = phaseColor.G;
- ptr2[index2 + 2] = phaseColor.R;
- ptr2[index2 + 3] = 255;
- }
- }
- else
- {
- ptr2[index2] = phaseColor.B;
- ptr2[index2 + 1] = phaseColor.G;
- ptr2[index2 + 2] = phaseColor.R;
- ptr2[index2 + 3] = 255;
- }
- }
- }
- }
- return src;
- }
- /// <summary>
- /// 刷新二值效果
- /// </summary>
- private void ReLoadBinarization()
- {
- if (this.documentWorkspace.CompositionSurface == null)
- return;
- if (bcBinaryChecked())
- {
- ResetAreaAndContent();
- //if (this.checkBox3.Checked)
- ReloadDebrisSelection();
- }
- else
- {
- this.documentWorkspace.PhaseModels[0].mat = null;
- phaseModel.choise = false;
- ////清除计算并存储的数据
- //ballPoint = null;
- //groupPoint = null;
- //vermicularPoint = null;
- //ballCircleList = null;
- //groupCircleList = null;
- //vermicularCircleList = null;
- //tempArea = null;
- //maxCaliperDiameter = null;
- //circleCoefficientList = null;
- isFirstSwitch = false;
- this.dataGridView1.Rows.Clear();
- }
- this.documentWorkspace.Refresh();
- }
- DataTable dtDataGridView1 = null;
- DataTable dtResult = null;
- AppCommon appCommon = new AppCommon();
- /// <summary>
- /// 刷新颗粒筛选效果
- /// </summary>
- private void ReloadDebrisSelection()
- {
- if (this.documentWorkspace.PhaseModels[0].mat != null)
- {
- this.dataGridView1.Rows.Clear();
-
- dtDataGridView1 = new DataTable();
-
- List<List<OpenCvSharp.Point>> ps = new List<List<OpenCvSharp.Point>>();//轮廓的拓扑信息
- Mat temp = new Mat();//中间变量
- this.documentWorkspace.PhaseModels[0].mat.CopyTo(temp);
- if (this.documentWorkspace.GraphicsList.IsExsitView())
- {
- List<OpenCvSharp.Point[][]> points = new List<OpenCvSharp.Point[][]>();//各石墨轮廓集合
- List<List<int>> lstAttribute = new List<List<int>>();//各个视场属性集合,索引0-横坐标,1-纵坐标,2-视场宽度,3-视场高度,4-视场面积
- int sumFieldl = 0; //视场个数
- Mat tempCopy = BinaryClass.BGRA2GRAY(this.documentWorkspace.PhaseModels[0].mat);
- //调用处理视场方法
- appCommon.MultiFieldView(appWorkspace, this.documentWorkspace.PhaseModels[0].mat, listView1, documentWorkspace, out points, out lstAttribute, out sumFieldl);
- //计总和
- double sumBallCircleArea = 0;
- double sumBallCircle = 0;
- double sumGroupCircleArea = 0;
- double sumGroupCircle = 0;
- double sumVermicularCircleArea = 0;
- double sumVermicularCircle = 0;
- double sumBitArea = 0;
- double sumContent = 0;
- double sumCreepRatio = 0;
-
- ballCircleList = new List<double>();
- groupCircleList = new List<double>();
- vermicularCircleList = new List<double>();
- tempArea = new List<string>();
- maxCaliperDiameter = new List<string>();
- circleCoefficientList = new List<string>();
- ballPoint = new List<List<OpenCvSharp.Point>>();
- groupPoint = new List<List<OpenCvSharp.Point>>();
- vermicularPoint = new List<List<OpenCvSharp.Point>>();
-
- int h = 0;
- foreach (OpenCvSharp.Point[][] contours in points)
- {
- h++;
- ballCircleArea = 0;
- groupCircleArea = 0;
- vermicularCircleArea = 0;
- for (int i = 0; i < contours.Length; i++)
- {
- for (int f = 0; f < contours[i].Length; f++)
- {
- contours[i][f].X = contours[i][f].X + lstAttribute[h - 1][0];
- contours[i][f].Y = contours[i][f].Y + lstAttribute[h - 1][1];
- }
- double area = appCommon.Area(tempCopy, contours[i][0]) * unitLength * unitLength;
- //double area = length * unitLength * unitLength;
- if (this.checkBox3.Checked)
- {
- if (area >= (this.trackBar2.Value) && area <= (this.trackBar4.Value))
- {
- ps.Add(contours[i].ToList());
- }
- else
- {
- if (contours[i].Length < 5)
- continue;
- else
- {
- double radius = BasicCalculationHelper.CalcLongTrail(contours[i]) * unitLength;//半径
- if ((decimal)(radius * 2) >= this.numericUpDown6.Value)
- {
- double outerCircle = radius * radius * Math.PI;//外接圆面积
- double circleCoefficient = (area/* - contours[i].Length / 2.0*/) / outerCircle;
- //double circleCoefficient = (4 * area) / (Math.PI * (radius * 2) * (radius * 2));
- tempArea.Add((area).ToString());
- maxCaliperDiameter.Add((radius * 2).ToString());
- circleCoefficientList.Add(circleCoefficient.ToString());
- if (circleCoefficient > CircularityCoefficient[1])
- {
- ballPoint.Add(contours[i].ToList());
- ballCircleList.Add(circleCoefficient);
- ballCircleArea += area;
- }
- else if (circleCoefficient >= CircularityCoefficient[0] && circleCoefficient <= CircularityCoefficient[1])
- {
- groupPoint.Add(contours[i].ToList());
- groupCircleList.Add(circleCoefficient);
- groupCircleArea += area;
- }
- else if (circleCoefficient < CircularityCoefficient[0])
- {
- vermicularPoint.Add(contours[i].ToList());
- vermicularCircleList.Add(circleCoefficient);
- vermicularCircleArea += area;
- }
- }
- }
- }
- }
- else
- {
- if (contours[i].Length < 5)
- continue;
- else
- {
- double radius = BasicCalculationHelper.CalcLongTrail(contours[i]) * unitLength;//半径
- if ((decimal)(radius * 2) >= this.numericUpDown6.Value)
- {
- double outerCircle = radius * radius * Math.PI;//外接圆面积
- double circleCoefficient = (area/* - contours[i].Length / 2.0*/) / outerCircle;
- //double circleCoefficient = (4 * area) / (Math.PI * (radius * 2) * (radius * 2));//原型系数
- tempArea.Add((area).ToString());
- maxCaliperDiameter.Add((radius * 2).ToString());
- circleCoefficientList.Add(circleCoefficient.ToString());
- if (circleCoefficient > CircularityCoefficient[1])
- {
- ballPoint.Add(contours[i].ToList());
- ballCircleList.Add(circleCoefficient);
- ballCircleArea += area;
- }
- else if (circleCoefficient >= CircularityCoefficient[0] && circleCoefficient <= CircularityCoefficient[1])
- {
- groupPoint.Add(contours[i].ToList());
- groupCircleList.Add(circleCoefficient);
- groupCircleArea += area;
- }
- else if (circleCoefficient < CircularityCoefficient[0])
- {
- vermicularPoint.Add(contours[i].ToList());
- vermicularCircleList.Add(circleCoefficient);
- vermicularCircleArea += area;
- }
- }
- }
- }
- }
- double toArea = ballCircleArea + groupCircleArea + vermicularCircleArea;
- double CreepRatio = 0;
- if (toArea > 0)
- {
- CreepRatio = (vermicularCircleArea + 0.5 * groupCircleArea) / (ballCircleArea + groupCircleArea + vermicularCircleArea);
- }
- string leve = string.Empty;
- if (CreepRatio >= 0.95)
- leve = PdnResources.GetString("Menu.creep.Text")+"95";
- else if (CreepRatio < 0.95 && CreepRatio >= 0.9)
- leve = PdnResources.GetString("Menu.creep.Text")+"90";
- else if (CreepRatio < 0.9 && CreepRatio >= 0.85)
- leve = PdnResources.GetString("Menu.creep.Text")+"85";
- else if (CreepRatio < 0.85 && CreepRatio >= 0.8)
- leve = PdnResources.GetString("Menu.creep.Text")+"80";
- else if (CreepRatio < 0.8 && CreepRatio >= 0.7)
- leve = PdnResources.GetString("Menu.creep.Text")+"70";
- else if (CreepRatio < 0.7 && CreepRatio >= 0.6)
- leve = PdnResources.GetString("Menu.creep.Text")+"60";
- else if (CreepRatio < 0.6 && CreepRatio >= 0.5)
- leve = PdnResources.GetString("Menu.creep.Text")+"50";
- else if (CreepRatio < 0.5 && CreepRatio >= 0.4)
- leve = PdnResources.GetString("Menu.creep.Text")+"40";
- else
- leve = PdnResources.GetString("Menu.Theunknown.Text");
- this.dataGridView1.Rows.Add($"{PdnResources.GetString("Menu.view.text")}{h}", ballCircleArea, ballPoint.Count - sumBallCircle, groupCircleArea, groupPoint.Count - sumGroupCircle, vermicularCircleArea, vermicularPoint.Count - sumVermicularCircle, lstAttribute[h - 1][4] * unitLength * unitLength, (ballCircleArea + groupCircleArea + vermicularCircleArea) / lstAttribute[h - 1][4] * unitLength * unitLength, CreepRatio, leve);
- sumBallCircleArea += ballCircleArea;
- sumBallCircle = ballPoint.Count;
- sumGroupCircleArea += groupCircleArea;
- sumGroupCircle = groupPoint.Count;
- sumVermicularCircleArea += vermicularCircleArea;
- sumVermicularCircle = vermicularPoint.Count;
- sumBitArea += lstAttribute[h - 1][4] * unitLength * unitLength;
- sumContent += (ballCircleArea + groupCircleArea + vermicularCircleArea) / lstAttribute[h - 1][4] * unitLength * unitLength;
- sumCreepRatio += CreepRatio;
- Cv2.FillPoly(temp, ps, new Scalar(0, 0, 0, 0));
- if (this.checkBox5.Checked)
- {
- Mat[] arr = temp.Split();
- temp = temp.CvtColor(ColorConversionCodes.BGRA2BGR);
- for (int i = 0; i < ballPoint.Count; i++)
- {
- int length = Cv2.FloodFill(temp, ballPoint[i][ballPoint[i].Count - 1], new Scalar(this.BallColor.B, this.BallColor.G, this.BallColor.R));
- }
- for (int i = 0; i < groupPoint.Count; i++)
- {
- int length = Cv2.FloodFill(temp, groupPoint[i][groupPoint[i].Count - 1], new Scalar(this.GroupColor.B, this.GroupColor.G, this.GroupColor.R));
- }
- for (int i = 0; i < vermicularPoint.Count; i++)
- {
- int length = Cv2.FloodFill(temp, vermicularPoint[i][vermicularPoint[i].Count - 1], new Scalar(this.VermicularColor.B, this.VermicularColor.G, this.VermicularColor.R));
- }
- Mat[] arr2 = temp.Split();
- arr[0] = arr2[0];
- arr[1] = arr2[1];
- arr[2] = arr2[2];
- Cv2.Merge(arr, temp);
- }
- }
- if (sumFieldl > 1 && tempArea.Count > 0)
- {
- double avgCreepRatio = sumCreepRatio / sumFieldl;
- string avgLeve = string.Empty;
- if (avgCreepRatio >= 0.95)
- avgLeve = PdnResources.GetString("Menu.creep.Text")+"95";
- else if (avgCreepRatio < 0.95 && avgCreepRatio >= 0.9)
- avgLeve = PdnResources.GetString("Menu.creep.Text")+"90";
- else if (avgCreepRatio < 0.9 && avgCreepRatio >= 0.85)
- avgLeve = PdnResources.GetString("Menu.creep.Text")+"85";
- else if (avgCreepRatio < 0.85 && avgCreepRatio >= 0.8)
- avgLeve = PdnResources.GetString("Menu.creep.Text")+"80";
- else if (avgCreepRatio < 0.8 && avgCreepRatio >= 0.7)
- avgLeve = PdnResources.GetString("Menu.creep.Text")+"70";
- else if (avgCreepRatio < 0.7 && avgCreepRatio >= 0.6)
- avgLeve = PdnResources.GetString("Menu.creep.Text")+"60";
- else if (avgCreepRatio < 0.6 && avgCreepRatio >= 0.5)
- avgLeve = PdnResources.GetString("Menu.creep.Text")+"50";
- else if (avgCreepRatio < 0.5 && avgCreepRatio >= 0.4)
- avgLeve = PdnResources.GetString("Menu.creep.Text")+"40";
- else
- avgLeve = PdnResources.GetString("Menu.Theunknown.Text");
- this.dataGridView1.Rows.Add(PdnResources.GetString("Menu.Image.Average.Text"), sumBallCircleArea/ sumFieldl, sumBallCircle/ sumFieldl, sumGroupCircleArea/ sumFieldl, sumGroupCircle/ sumFieldl, sumVermicularCircleArea / sumFieldl, sumVermicularCircle/ sumFieldl, sumBitArea/ sumFieldl, sumContent/ sumFieldl, avgCreepRatio, avgLeve);
- }
- }
- else
- {
- OpenCvSharp.Point[][] contours;//原始轮廓信息
- HierarchyIndex[] hierachy;
- Mat tempCopy = BinaryClass.BGRA2GRAY(this.documentWorkspace.PhaseModels[0].mat);
- Cv2.FindContours(BinaryClass.BGRA2GRAY(this.documentWorkspace.PhaseModels[0].mat), out contours, out hierachy, RetrievalModes.CComp, ContourApproximationModes.ApproxNone);
- ballPoint = new List<List<OpenCvSharp.Point>>();
- groupPoint = new List<List<OpenCvSharp.Point>>();
- vermicularPoint = new List<List<OpenCvSharp.Point>>();
- ballCircleList = new List<double>();
- groupCircleList = new List<double>();
- vermicularCircleList = new List<double>();
- ballCircleArea = 0;
- groupCircleArea = 0;
- vermicularCircleArea = 0;
- tempArea = new List<string>();
- maxCaliperDiameter = new List<string>();
- circleCoefficientList = new List<string>();
- for (int i = 0; i < hierachy.Length; i++)
- {
- if (hierachy[i].Parent == -1)
- {
- double area = appCommon.Area(tempCopy, contours[i][0]) * unitLength * unitLength;
- //double area = length * unitLength * unitLength;
- if (this.checkBox3.Checked)
- {
- if (area >= (this.trackBar2.Value) && area <= (this.trackBar4.Value))
- {
- ps.Add(contours[i].ToList());
- }
- else
- {
- if (contours[i].Length < 5)
- continue;
- else
- {
- double radius = BasicCalculationHelper.CalcLongTrail(contours[i]) * unitLength;//半径
- if ((decimal)(radius * 2) >= this.numericUpDown6.Value)
- {
- double outerCircle = radius * radius * Math.PI;//外接圆面积
- double circleCoefficient = (area/* - contours[i].Length / 2.0*/) / outerCircle;
- //double circleCoefficient = (4 * area) / (Math.PI * (radius * 2) * (radius * 2));
- tempArea.Add((area).ToString());
- maxCaliperDiameter.Add((radius * 2).ToString());
- circleCoefficientList.Add(circleCoefficient.ToString());
- if (circleCoefficient > CircularityCoefficient[1])
- {
- ballPoint.Add(contours[i].ToList());
- ballCircleList.Add(circleCoefficient);
- ballCircleArea += area;
- }
- else if (circleCoefficient >= CircularityCoefficient[0] && circleCoefficient <= CircularityCoefficient[1])
- {
- groupPoint.Add(contours[i].ToList());
- groupCircleList.Add(circleCoefficient);
- groupCircleArea += area;
- }
- else if (circleCoefficient < CircularityCoefficient[0])
- {
- vermicularPoint.Add(contours[i].ToList());
- vermicularCircleList.Add(circleCoefficient);
- vermicularCircleArea += area;
- }
- }
- }
- }
- }
- else
- {
- if (contours[i].Length < 5)
- continue;
- else
- {
- double radius = BasicCalculationHelper.CalcLongTrail(contours[i]) * unitLength;//半径
- if ((decimal)(radius * 2) >= this.numericUpDown6.Value)
- {
- double outerCircle = radius * radius * Math.PI;//外接圆面积
- double circleCoefficient = (area/* - contours[i].Length / 2.0*/) / outerCircle;
- //double circleCoefficient = (4 * area) / (Math.PI * (radius * 2) * (radius * 2));//原型系数
- tempArea.Add((area).ToString());
- maxCaliperDiameter.Add((radius * 2).ToString());
- circleCoefficientList.Add(circleCoefficient.ToString());
- if (circleCoefficient > CircularityCoefficient[1])
- {
- ballPoint.Add(contours[i].ToList());
- ballCircleList.Add(circleCoefficient);
- ballCircleArea += area;
- }
- else if (circleCoefficient >= CircularityCoefficient[0] && circleCoefficient <= CircularityCoefficient[1])
- {
- groupPoint.Add(contours[i].ToList());
- groupCircleList.Add(circleCoefficient);
- groupCircleArea += area;
- }
- else if (circleCoefficient < CircularityCoefficient[0])
- {
- vermicularPoint.Add(contours[i].ToList());
- vermicularCircleList.Add(circleCoefficient);
- vermicularCircleArea += area;
- }
- }
- }
- }
- }
- }
- if (tempArea.Count > 0)
- {
- double CreepRatio = (vermicularCircleArea + 0.5 * groupCircleArea) / (ballCircleArea + groupCircleArea + vermicularCircleArea);
- string leve = string.Empty;
- if (CreepRatio >= 0.95)
- leve = PdnResources.GetString("Menu.creep.Text")+"95";
- else if (CreepRatio < 0.95 && CreepRatio >= 0.9)
- leve = PdnResources.GetString("Menu.creep.Text")+"90";
- else if (CreepRatio < 0.9 && CreepRatio >= 0.85)
- leve = PdnResources.GetString("Menu.creep.Text")+"85";
- else if (CreepRatio < 0.85 && CreepRatio >= 0.8)
- leve = PdnResources.GetString("Menu.creep.Text")+"80";
- else if (CreepRatio < 0.8 && CreepRatio >= 0.7)
- leve = PdnResources.GetString("Menu.creep.Text")+"70";
- else if (CreepRatio < 0.7 && CreepRatio >= 0.6)
- leve = PdnResources.GetString("Menu.creep.Text")+"60";
- else if (CreepRatio < 0.6 && CreepRatio >= 0.5)
- leve = PdnResources.GetString("Menu.creep.Text")+"50";
- else if (CreepRatio < 0.5 && CreepRatio >= 0.4)
- leve = PdnResources.GetString("Menu.creep.Text")+"40";
- else
- leve = PdnResources.GetString("Menu.Theunknown.Text");
- this.dataGridView1.Rows.Add(PdnResources.GetString("Menu.view.text")+"1", ballCircleArea, ballCircleList.Count, groupCircleArea, groupCircleList.Count, vermicularCircleArea, vermicularCircleList.Count, bitArea, (ballCircleArea + groupCircleArea + vermicularCircleArea) / bitArea, CreepRatio, leve);
- }
- Cv2.FillPoly(temp, ps, new Scalar(0, 0, 0, 0));
- if (this.checkBox5.Checked)
- {
- Mat[] arr = temp.Split();
- temp = temp.CvtColor(ColorConversionCodes.BGRA2BGR);
- for (int i = 0; i < ballPoint.Count; i++)
- {
- int length = Cv2.FloodFill(temp, ballPoint[i][ballPoint[i].Count - 1], new Scalar(this.BallColor.B, this.BallColor.G, this.BallColor.R));
- }
- for (int i = 0; i < groupPoint.Count; i++)
- {
- int length = Cv2.FloodFill(temp, groupPoint[i][groupPoint[i].Count - 1], new Scalar(this.GroupColor.B, this.GroupColor.G, this.GroupColor.R));
- }
- for (int i = 0; i < vermicularPoint.Count; i++)
- {
- int length = Cv2.FloodFill(temp, vermicularPoint[i][vermicularPoint[i].Count - 1], new Scalar(this.VermicularColor.B, this.VermicularColor.G, this.VermicularColor.R));
- }
- Mat[] arr2 = temp.Split();
- arr[0] = arr2[0];
- arr[1] = arr2[1];
- arr[2] = arr2[2];
- Cv2.Merge(arr, temp);
- //Cv2.FillPoly(temp, ballPoint, new Scalar(this.BallColor.B, this.BallColor.G, this.BallColor.R, 255));
- //Cv2.FillPoly(temp, groupPoint, new Scalar(this.GroupColor.B, this.GroupColor.G, this.GroupColor.R, 255));
- //Cv2.FillPoly(temp, vermicularPoint, new Scalar(this.VermicularColor.B, this.VermicularColor.G, this.VermicularColor.R, 255));
- }
- }
- this.documentWorkspace.PhaseModels[1].mat = temp;
- this.documentWorkspace.Refresh();
- //数据结果保存
- dtDataGridView1 = appCommon.ResultDataSaving(dataGridView1);
- string imgName = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetFriendlyName();
- string tag = this.imageList1.Images.Keys[this.listView1.FocusedItem.Index];
- //dtResult = new DataTable(tag);
- //分析数据保存
- dtResult = appCommon.AnalysisDataSaving(dataGridView1, imgName, tag);
- if (dtDataGridView1.Rows.Count > 0)
- {
- RefreshDataGridView1();
- }
- if (bcOriginChecked())
- {
- appCommonDisplay.DisplayData(this.dataGridView1, false);
- }
- }
- }
- /// <summary>
- /// 刷新其他信息
- /// </summary>
- private void ResetAreaAndContent()
- {
- if(this.documentWorkspace.PhaseModels[0].mat != null && bcBinaryChecked())
- {
- OpenCvSharp.Point[][] contours;//原始轮廓信息
- HierarchyIndex[] hierachy;
- Mat tempCopy = BinaryClass.BGRA2GRAY(this.documentWorkspace.PhaseModels[0].mat);
- Mat temp = new Mat();
- this.documentWorkspace.PhaseModels[0].mat.CopyTo(temp);
- Cv2.FindContours(BinaryClass.BGRA2GRAY(this.documentWorkspace.PhaseModels[0].mat), out contours, out hierachy, RetrievalModes.CComp, ContourApproximationModes.ApproxNone);
- if (hierachy.Length > 0)
- {
- double maxArea = 0;//面积最大值
- double minArea = 9999999999;//面积最小值
- double area = 0;
- //ballPoint = new List<List<OpenCvSharp.Point>>();
- //groupPoint = new List<List<OpenCvSharp.Point>>();
- //vermicularPoint = new List<List<OpenCvSharp.Point>>();
- //ballCircleList = new List<double>();
- //groupCircleList = new List<double>();
- //vermicularCircleList = new List<double>();
- //ballCircleArea = 0;
- //groupCircleArea = 0;
- //vermicularCircleArea = 0;
- //tempArea = new List<string>();
- //maxCaliperDiameter = new List<string>();
- //circleCoefficientList = new List<string>();
- for (int i = 0; i < hierachy.Length; i++)
- {
- if (hierachy[i].Parent == -1)
- {
- area = appCommon.Area(tempCopy, contours[i][0]) * unitLength * unitLength;
- if (maxArea < area)
- maxArea = area;
- if (minArea > area)
- minArea = area;
- }
- //if (contours[i].Length < 5)
- // continue;
- //else
- //{
- // double radius = BasicCalculationHelper.CalcLongTrail(contours[i]);//半径
- // if ((decimal)(radius * 2 * unitLength) >= this.numericUpDown6.Value)
- // {
- // double circleCoefficient = (4 * area) / (Math.PI * (radius * 2) * (radius * 2));//原型系数
- // tempArea.Add((area * unitLength).ToString());
- // maxCaliperDiameter.Add((radius * 2 * unitLength).ToString());
- // circleCoefficientList.Add(circleCoefficient.ToString());
- // if(circleCoefficient > CircularityCoefficient[1])
- // {
- // ballPoint.Add(contours[i].ToList());
- // ballCircleList.Add(circleCoefficient);
- // ballCircleArea += area;
- // }
- // else if(circleCoefficient >= CircularityCoefficient[0] && circleCoefficient <= CircularityCoefficient[1])
- // {
- // groupPoint.Add(contours[i].ToList());
- // groupCircleList.Add(circleCoefficient);
- // groupCircleArea += area;
- // }
- // else if (circleCoefficient < CircularityCoefficient[0])
- // {
- // vermicularPoint.Add(contours[i].ToList());
- // vermicularCircleList.Add(circleCoefficient);
- // vermicularCircleArea += area;
- // }
- // }
- //}
- }
- ////显示不同级别石墨颜色
- //if (this.checkBox5.Checked)
- //{
- // Cv2.FillPoly(temp, ballPoint, new Scalar(this.BallColor.B, this.BallColor.G, this.BallColor.R, 255));
- // Cv2.FillPoly(temp, groupPoint, new Scalar(this.GroupColor.B, this.GroupColor.G, this.GroupColor.R, 255));
- // Cv2.FillPoly(temp, vermicularPoint, new Scalar(this.VermicularColor.B, this.VermicularColor.G, this.VermicularColor.R, 255));
- //}
- //this.documentWorkspace.PhaseModels[1].mat = temp;
- if (!changeColor)
- {
- maxArea = maxArea;
- minArea = minArea;
- int maxNum = (int)Math.Ceiling(maxArea);//获取面积最大值
- int minNum = (int)Math.Floor(minArea);//获取面积最小值
- //先解绑事件以防数据赋值异常
- this.numericUpDown4.ValueChanged -= numericUpDown4_ValueChanged;
- this.numericUpDown5.ValueChanged -= numericUpDown5_ValueChanged;
- this.trackBar2.Scroll -= trackBar2_Scroll;
- this.trackBar4.Scroll -= trackBar4_Scroll;
- this.numericUpDown4.Maximum = maxNum;
- this.numericUpDown4.Minimum = minNum;
- this.trackBar2.Maximum = maxNum;
- this.trackBar2.Minimum = minNum;
- this.numericUpDown5.Maximum = maxNum;
- this.numericUpDown5.Minimum = minNum;
- this.trackBar4.Maximum = maxNum;
- this.trackBar4.Minimum = minNum;
- this.numericUpDown4.Value = minNum;
- this.trackBar2.Value = minNum;
- this.numericUpDown5.Value = maxNum;
- this.trackBar4.Value = maxNum;
- if (areaMin != -1 && areaMin >= this.numericUpDown4.Minimum && areaMin <= this.numericUpDown5.Maximum)
- {
- trackBar2.Value = (int)areaMin;
- this.numericUpDown4.Value = areaMin;
- }
- if (areaMax != -1 && areaMax >= this.numericUpDown4.Value && areaMax <= this.numericUpDown5.Maximum)
- {
- trackBar4.Value = (int)areaMax;
- this.numericUpDown5.Value = areaMax;
- }
- this.numericUpDown4.ValueChanged += new EventHandler(numericUpDown4_ValueChanged);
- this.numericUpDown5.ValueChanged += new EventHandler(numericUpDown5_ValueChanged);
- this.trackBar2.Scroll += new EventHandler(trackBar2_Scroll);
- this.trackBar4.Scroll += new EventHandler(trackBar4_Scroll);
- }
- }
- }
- }
-
- /// <summary>
- /// 颗粒筛选范围最小值
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void numericUpDown4_ValueChanged(object sender, EventArgs e)
- {
- if (this.numericUpDown4.Value > this.numericUpDown5.Value)
- this.numericUpDown4.Value = this.numericUpDown5.Value;
- this.trackBar2.Value = Convert.ToInt32(this.numericUpDown4.Value);
- areaMin = this.numericUpDown4.Value;
- areaMax = this.numericUpDown5.Value;
- if (this.checkBox3.Checked &&bcBinaryChecked())
- ReloadDebrisSelection();
- }
- /// <summary>
- /// 颗粒筛选范围最大值
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void numericUpDown5_ValueChanged(object sender, EventArgs e)
- {
- if (this.numericUpDown5.Value < this.numericUpDown4.Value)
- this.numericUpDown5.Value = this.numericUpDown4.Value;
- this.trackBar4.Value = Convert.ToInt32(this.numericUpDown5.Value);
- areaMin = this.numericUpDown4.Value;
- areaMax = this.numericUpDown5.Value;
- if (this.checkBox3.Checked && bcBinaryChecked())
- ReloadDebrisSelection();
- }
- /// <summary>
- /// 颗粒筛选最小值滚动条
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void trackBar2_Scroll(object sender, EventArgs e)
- {
- this.numericUpDown4.Value = this.trackBar2.Value;
- }
- /// <summary>
- /// 颗粒筛选最大值滚动条
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void trackBar4_Scroll(object sender, EventArgs e)
- {
- this.numericUpDown5.Value = this.trackBar4.Value;
- }
- /// <summary>
- /// 是否二值化
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox2_CheckedChanged(object sender, EventArgs e)
- {
- if (this.documentWorkspace.CompositionSurface == null)
- return;
- if (!bcBinaryChecked())
- this.checkBox3.Checked = false;
- changeColor = false;
- ReLoadBinarization();
- }
- /// <summary>
- /// 显示参数设置按钮
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button3_Click(object sender, EventArgs e)
- {
- using (VermiculateCastIronSetFontDialog vermiculateCastIronSetFontDialog = new VermiculateCastIronSetFontDialog(this))
- {
- vermiculateCastIronSetFontDialog.StartPosition = FormStartPosition.CenterScreen;
- vermiculateCastIronSetFontDialog.ShowDialog();
- }
- }
- /// <summary>
- /// 颜色设置按钮
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button4_Click(object sender, EventArgs e)
- {
- using (VermiculateCastIronSetColorDialog vermiculateCastIronSetColorDialog = new VermiculateCastIronSetColorDialog(this))
- {
- vermiculateCastIronSetColorDialog.StartPosition = FormStartPosition.CenterScreen;
- vermiculateCastIronSetColorDialog.ShowDialog();
- }
- }
- /// <summary>
- /// 设置页修改颜色
- /// </summary>
- /// <param name="BallColor"></param>
- /// <param name="GroupColor"></param>
- /// <param name="VermicularColor"></param>
- public void SetVermiculateCastIronColor(Color BallColor, Color GroupColor, Color VermicularColor)
- {
- this.BallColor = BallColor;
- this.GroupColor = GroupColor;
- this.VermicularColor = VermicularColor;
- if (this.documentWorkspace.CompositionSurface == null)
- return;
- if (bcBinaryChecked() && this.checkBox3.Checked)
- ReloadDebrisSelection();
- else if (bcBinaryChecked() && !this.checkBox3.Checked)
- {
- changeColor = false;
- ReLoadBinarization();
- }
- }
- /// <summary>
- /// 设置页修改字体
- /// </summary>
- /// <param name="BallColor"></param>
- /// <param name="GroupColor"></param>
- /// <param name="VermicularColor"></param>
- public void SetVermiculateCastIronFont(string fontStyle, float fontSize, Color fontColor)
- {
- this.fontStyle = fontStyle;
- this.fontSize = fontSize;
- this.fontColor = fontColor;
- if (this.documentWorkspace.CompositionSurface == null)
- return;
- if (bcBinaryChecked() && this.checkBox3.Checked)
- ReloadDebrisSelection();
- else if (bcBinaryChecked() && !this.checkBox3.Checked)
- {
- changeColor = false;
- ReLoadBinarization();
- }
- }
- /// <summary>
- /// 选中显示不同级别石墨颜色
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox5_CheckedChanged(object sender, EventArgs e)
- {
- if (this.documentWorkspace == null || this.documentWorkspace.CompositionSurface == null)
- return;
- if (bcBinaryChecked() && this.checkBox3.Checked)
- ReloadDebrisSelection();
- else if (bcBinaryChecked() && !this.checkBox3.Checked)
- {
- changeColor = false;
- ReLoadBinarization();
- }
- }
- /// <summary>
- /// 修改限制长度
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void numericUpDown6_ValueChanged(object sender, EventArgs e)
- {
- if (this.documentWorkspace == null || this.documentWorkspace.CompositionSurface == null)
- return;
- if (bcBinaryChecked() && this.checkBox3.Checked)
- ReloadDebrisSelection();
- else if (bcBinaryChecked() && !this.checkBox3.Checked)
- {
- changeColor = false;
- ReLoadBinarization();
- }
- }
- /// <summary>
- /// 是否显示圆形系数
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox4_CheckedChanged(object sender, EventArgs e)
- {
- //AddPictureBoxEvent();
- if (this.documentWorkspace != null)
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 导出项目按钮
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button5_Click(object sender, EventArgs e)
- {
- try
- {
- if (dataGridView2.Rows.Count == 0)
- {
- MessageBox.Show(PdnResources.GetString("Menu.Noanalysineratereport.text")+"!");
- return;
- }
- if (this.analyzeSettingModel == null)
- {
- MessageBox.Show(PdnResources.GetString("Menu.Pleasesettheanalysisreportfirst.text") + "!");
- return;
- }
- //获取项目工程内的文件夹路径
- ProjectEngineering.NodeItem item = this.appWorkspace.GetInsertProjectPath(2, "Menu.DedicatedAnalysis.BlackMetal.VermiculateCastIron.Text", this.analyzeSettingModel.savePath);
- if (item != null)
- {
- //向文件夹内保存图片和报告
- if (!string.IsNullOrEmpty(this.analyzeSettingModel.analyzeClassify))
- {
- //获取word书签与excel单元格的关系,以字典方式存储
- List<mic_module_infos> mic_module_infos = mic_module_infos_BLL.FindAll().FindAll(a => a.analyze_classify == this.analyzeSettingModel.analyzeClassify);
- Dictionary<string, string> tagInfos = new Dictionary<string, string>();
- if (mic_module_infos != null && mic_module_infos.Count > 0)
- {
- foreach (mic_module_infos info in mic_module_infos)
- {
- tagInfos.Add(info.tag_name, info.cell_position);
- }
- }
- //分析结果
- List<List<string>> analysisContent = new List<List<string>>();
- List<string> contentHead = new List<string>();
- contentHead.Add(PdnResources.GetString("Menu.picture.Text"));
- contentHead.Add(PdnResources.GetString("Menu.view.text"));
- contentHead.Add(PdnResources.GetString("Menu.Sphericalarea.text"));
- contentHead.Add(PdnResources.GetString("Menu.Numberofballs.text"));
- contentHead.Add(PdnResources.GetString("Menu.Massandflocculentarea.text"));
- contentHead.Add(PdnResources.GetString("Menu.Numberofclustersandclusters.text"));
- contentHead.Add(PdnResources.GetString("Menu.Wormlikearea.text"));
- contentHead.Add(PdnResources.GetString("Menu.Wormlikenumber.text"));
- contentHead.Add(PdnResources.GetString("Menu.Thetotalarea.text"));
- contentHead.Add(PdnResources.GetString("Menu.Graphitecontent.text"));
- contentHead.Add(PdnResources.GetString("Menu.Creepingrate.text"));
- contentHead.Add(PdnResources.GetString("Menu.Creeplevel.text"));
- analysisContent.Add(contentHead);
- foreach (DataGridViewRow rowItem in this.dataGridView2.Rows)
- {
- List<string> content = new List<string>();
- content.Add(rowItem.Cells[0].Value.ToString());
- content.Add(rowItem.Cells[1].Value.ToString());
- content.Add(rowItem.Cells[2].Value.ToString());
- content.Add(rowItem.Cells[3].Value.ToString());
- content.Add(rowItem.Cells[4].Value.ToString());
- content.Add(rowItem.Cells[5].Value.ToString());
- content.Add(rowItem.Cells[6].Value.ToString());
- content.Add(rowItem.Cells[7].Value.ToString());
- content.Add(rowItem.Cells[8].Value.ToString());
- content.Add(rowItem.Cells[9].Value.ToString());
- content.Add(rowItem.Cells[10].Value.ToString());
- content.Add(rowItem.Cells[11].Value.ToString());
- analysisContent.Add(content);
- }
- analysisContent.Add(new List<string>() { "\r" });
- foreach (DataGridViewRow rowItem in this.dataGridView3.Rows)
- {
- List<string> content = new List<string>();
- content.Add(rowItem.Cells[0].Value.ToString());
- content.Add(rowItem.Cells[1].Value.ToString());
- content.Add(rowItem.Cells[2].Value.ToString());
- content.Add(rowItem.Cells[3].Value.ToString());
- content.Add(rowItem.Cells[4].Value.ToString());
- content.Add(rowItem.Cells[5].Value.ToString());
- content.Add(rowItem.Cells[6].Value.ToString());
- content.Add(rowItem.Cells[7].Value.ToString());
- content.Add(rowItem.Cells[8].Value.ToString());
- content.Add(rowItem.Cells[9].Value.ToString());
- content.Add(rowItem.Cells[10].Value.ToString());
- content.Add(rowItem.Cells[11].Value.ToString());
- analysisContent.Add(content);
- }
- //图片
- bitList = new List<Bitmap>();
- if (this.showAll)
- {
- foreach (KeyValuePair<string, List<Bitmap>> kv in this.bitDic)
- {
- bitList.Add(kv.Value[0]);
- bitList.Add(kv.Value[1]);
- }
- }
- else
- {
- if (this.listView2.SelectedItems != null && this.listView2.SelectedItems.Count > 0)
- {
- foreach (ListViewItem rowItem in this.listView2.SelectedItems)
- {
- if (bitDic.ContainsKey(rowItem.Name))
- {
- bitList.Add(bitDic[rowItem.Name][0]);
- bitList.Add(bitDic[rowItem.Name][1]);
- }
- }
- }
- }
- //中间数据
- if (!this.showAll)
- {
- if (this.listView2.SelectedItems != null && this.listView2.SelectedItems.Count > 0)
- {
- List<ExportProjectModel> exportModel = new List<ExportProjectModel>();
- foreach (ListViewItem rowItem in this.listView2.SelectedItems)
- {
- foreach (ExportProjectModel model in this.tempDataModel)
- {
- if (model.tagName.Equals(rowItem.Name))
- {
- ExportProjectModel tempModel = new ExportProjectModel();
- tempModel.tagName = model.tagName;
- tempModel.picName = model.picName;
- tempModel.dataList = model.dataList;
- exportModel.Add(tempModel);
- break;
- }
- }
- }
- this.appWorkspace.CreateAnalysisReport(this.analyzeSettingModel, analysisContent, exportModel, bitList, tagInfos, item.path, item.code);
- }
- }
- else
- this.appWorkspace.CreateAnalysisReport(this.analyzeSettingModel, analysisContent, tempDataModel, bitList, tagInfos, item.path, item.code);
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Pleasesettheanalysisreportfirst.text")+"!");
- return;
- }
- //保存项目信息到数据库
- this.appWorkspace.InsertIntoDB(this.analyzeSettingModel, item);
- }
- }
- catch (Exception)
- {
- }
- }
- #region 参数保存及提取
- /// <summary>
- /// 保存参数的key,value和type
- /// </summary>
- /// <param name="param_key"></param>
- /// <param name="param_value"></param>
- /// <param name="param_type"></param>
- private void saveParamValue(string param_key, string param_value, int param_type)
- {
- bool foundItem = false;
- if (!this.eachData.ContainsKey(GetImgKey()))
- {
- GrainSizeAnalysisModel analysisItem = new GrainSizeAnalysisModel();
- analysisItem.menuId = this.menuId;
- analysisItem.param_key = param_key;
- analysisItem.param_type = param_type;
- analysisItem.param_value = param_value;
- analysisItem.setValue();
- analysisItem.ListParam = new List<GrainSizeAnalysisModel>();
- analysisItem.ListParam.Add(analysisItem);
- this.eachData.Add(GetImgKey(), analysisItem);
- }
- foreach (var item in this.eachData[GetImgKey()].ListParam)
- {
- if (item.param_key.Equals(param_key) && item.menuId == this.menuId)
- {
- item.param_value = param_value;
- item.setValue();
- foundItem = true;
- break;
- }
- }
- if (!foundItem)
- {
- GrainSizeAnalysisModel analysisItem = new GrainSizeAnalysisModel();
- analysisItem.menuId = this.menuId;
- analysisItem.param_key = param_key;
- analysisItem.param_type = param_type;
- analysisItem.param_value = param_value;
- analysisItem.setValue();
- this.eachData[GetImgKey()].ListParam.Add(analysisItem);
- }
- }
- /// <summary>
- /// 保存界面中的参数到model
- /// </summary>
- private void saveDialogParamValues()
- {
- saveParamValue(ParamKey_Report, checkBox1.Checked ? "0" : "1", (int)PaintDotNet.Base.Dtryt.Boolean);//报告设置
- saveParamValue(ParamKey_Screen, checkBox3.Checked ? "0" : "1", (int)Base.Dtryt.Boolean);//筛选
- saveParamValue(ParamKey_ScreenMin, numericUpDown4 != null ? numericUpDown4.Value.ToString() : "", (int)Base.Dtryt.Decimal);//面积最小值
- saveParamValue(ParamKey_ScreenMax, numericUpDown5 != null ? numericUpDown5.Value.ToString() : "", (int)Base.Dtryt.Decimal);//面积最大值
- saveParamValue(ParamKey_Coefficient, checkBox4.Checked ? "0" : "1", (int)Base.Dtryt.Boolean);//显示圆形系数
- saveParamValue(ParamKey_Colour, checkBox5.Checked ? "0" : "1", (int)Base.Dtryt.Boolean);//显示不同颜色
- saveParamValue(ParamKey_Sort, numericUpDown6 != null ? numericUpDown6.Value.ToString() : "", (int)Base.Dtryt.Decimal);//分类
- saveParamValue(ParamKey_DecimalPlace, numericUpDown1 != null ? numericUpDown1.Value.ToString() : "", (int)Base.Dtryt.Decimal);//保留小数位数
- saveParamValue(ParamKey_BallColor, BallColor.ToArgb().ToString(), (int)PaintDotNet.Base.Dtryt.Color);//球状颜色
- saveParamValue(ParamKey_GroupColor, GroupColor.ToArgb().ToString(), (int)PaintDotNet.Base.Dtryt.Color);//团状颜色
- saveParamValue(ParamKey_VermicularColor, VermicularColor.ToArgb().ToString(), (int)PaintDotNet.Base.Dtryt.Color);//蠕虫状颜色
- saveParamValue(ParamKey_FontStyle, fontStyle, (int)Base.Dtryt.ItemString);//字体
- saveParamValue(ParamKey_FontSize, fontSize.ToString(), (int)Base.Dtryt.Interger);//字体大小
- saveParamValue(ParamKey_FontColor, fontColor.ToArgb().ToString(), (int)PaintDotNet.Base.Dtryt.Color);//字颜色
- }
- /// <summary>
- /// 获取保存的参数
- /// </summary>
- private void GetListParamModel()
- {
- if (this.eachData.ContainsKey(GetImgKey()) && this.eachData[GetImgKey()] != null)
- {
- for (int i = 0; i < this.eachData[GetImgKey()].ListParam.Count; i++)
- {
- switch (this.eachData[GetImgKey()].ListParam[i].param_key)
- {
- case ParamKey_Report:
- checkBox1.Checked = (Boolean)this.eachData[GetImgKey()].ListParam[i].value;
- break;
- case ParamKey_Screen:
- checkBox3.Checked = (Boolean)this.eachData[GetImgKey()].ListParam[i].value;
- break;
- case ParamKey_ScreenMin:
- areaMin = decimal.Parse(this.eachData[GetImgKey()].ListParam[i].param_value);
- break;
- case ParamKey_ScreenMax:
- areaMax = decimal.Parse(this.eachData[GetImgKey()].ListParam[i].param_value);
- break;
- case ParamKey_Coefficient:
- checkBox4.Checked = (Boolean)this.eachData[GetImgKey()].ListParam[i].value;
- break;
- case ParamKey_Colour:
- checkBox5.Checked = (Boolean)this.eachData[GetImgKey()].ListParam[i].value;
- break;
- case ParamKey_Sort:
- numericUpDown6.Value = decimal.Parse(this.eachData[GetImgKey()].ListParam[i].param_value);
- break;
- case ParamKey_DecimalPlace:
- numericUpDown1.Value = decimal.Parse(this.eachData[GetImgKey()].ListParam[i].param_value);
- break;
- case ParamKey_BallColor:
- BallColor = Color.FromArgb((int)this.eachData[GetImgKey()].ListParam[i].value);
- break;
- case ParamKey_GroupColor:
- GroupColor = Color.FromArgb((int)this.eachData[GetImgKey()].ListParam[i].value);
- break;
- case ParamKey_VermicularColor:
- VermicularColor = Color.FromArgb((int)this.eachData[GetImgKey()].ListParam[i].value);
- break;
- case ParamKey_FontStyle:
- fontStyle = this.eachData[GetImgKey()].ListParam[i].value.ToString();
- break;
- case ParamKey_FontSize:
- fontSize = float.Parse(this.eachData[GetImgKey()].ListParam[i].value.ToString());
- break;
- case ParamKey_FontColor:
- fontColor = Color.FromArgb((int)this.eachData[GetImgKey()].ListParam[i].value);
- break;
- }
- }
- }
- }
- /// <summary>
- /// 获取XML保存的参数
- /// </summary>
- private void GetXmlParameter()
- {
- string filePath = Application.StartupPath + "\\Config\\" + Startup.instance.SettingPrefix + "\\GrainSizeAnalyze\\GrainSizeAnalysisModel.xml";
- GrainSizeAnalysisModel analysisModelXml = XmlSerializeHelper.DESerializer<GrainSizeAnalysisModel>(FileOperationHelper.ReadStringFromFile(filePath, System.IO.FileMode.Open));
-
- for (int i = 0; i < listView1.Items.Count; i++)
- {
- if (this.eachData.ContainsKey(listView1.Items[i].Index.ToString()))
- {
- this.eachData[listView1.Items[i].Index.ToString()] = analysisModelXml.cloneListParamModel(this.menuId);
- }
- else
- {
- this.eachData.Add(listView1.Items[i].Index.ToString(), analysisModelXml.cloneListParamModel(this.menuId));
- }
- }
- foreach (var item in this.eachData[GetImgKey()].ListParam)
- item.setValue();
- }
- /// <summary>
- /// 保存参数,防止没有图片
- /// </summary>
- private void NullKey()
- {
- GrainSizeAnalysisModel grainsizeanalysismodel = new GrainSizeAnalysisModel();
- grainsizeanalysismodel.ListParam = new List<GrainSizeAnalysisModel>();
- this.eachData.Add("null", grainsizeanalysismodel);
- }
- private string GetImgKey()
- {
- string key = this.listView1.FocusedItem != null ? this.listView1.FocusedItem.Index.ToString() : "null";
- return key;
- }
- #endregion
- private void button11_Click(object sender, EventArgs e)
- {
- if (this.listView1.FocusedItem == null)
- {
- return;
- }
- binaryClass.saveParams();
- binaryClass.applyToAll(this.imageList1.Images.Keys, this.imageList1.Images.Keys[int.Parse(GetImgKey())]);
- saveDialogParamValues();
- GrainSizeAnalysisModel data = new GrainSizeAnalysisModel();
- if (eachData.ContainsKey(GetImgKey()))
- {
- data = eachData[GetImgKey()];
- }
- for (int i = 0; i < listView1.Items.Count; i++)
- {
- eachData[i.ToString()] = data.cloneListParamModel(this.menuId);
- this.listView1.EnsureVisible(i);
- this.listView1.Items[i].Focused = true;
- this.listView1.Items[i].Selected = true;
- }
- }
- private bool blSaveAll = false;
- private void button10_Click(object sender, EventArgs e)
- {
- if (this.listView1.FocusedItem == null)
- {
- return;
- }
- if (eachData.Count - 1 != listView1.Items.Count)
- {
- MessageBox.Show("请先点击应用全部!");
- return;
- }
- saveDialogParamValues();
- int current = int.Parse(GetImgKey());
- for (int i = 0; i < listView1.Items.Count; i++)
- {
- this.listView1.EnsureVisible(i);
- this.listView1.Items[i].Focused = true;
- this.listView1.Items[i].Selected = true;
- this.button2.PerformClick();
- blSaveAll = true;
- }
- this.listView1.EnsureVisible(current);
- this.listView1.Items[current].Focused = true;
- this.listView1.Items[current].Selected = true;
- blSaveAll = false;
- }
- private void listView1_MouseDown(object sender, MouseEventArgs e)
- {
- if (this.listView1.FocusedItem != null)
- saveDialogParamValues();
- }
- #region [脚本相关]
- private void getValue(string key, object value)
- {
- switch (key)
- {
- case "parameter1":
- checkBox3.Checked = Convert.ToBoolean(value);
- break;
- case "parameter2":
- int min = Convert.ToInt32(value);
- decimal minDec = Convert.ToDecimal(value);
- if (bcBinaryChecked())
- {
- if (trackBar2.Minimum > min || trackBar2.Maximum < min)
- {
- trackBar2.Value = trackBar2.Minimum;
- }
- else
- {
- trackBar2.Value = min;
- }
- if (numericUpDown4.Minimum > min || numericUpDown4.Maximum < min)
- {
- numericUpDown4.Value = numericUpDown4.Minimum;
- }
- else
- {
- numericUpDown4.Value = minDec;
- }
- }
- break;
- case "parameter3":
- int max = Convert.ToInt32(value);
- decimal maxDec = Convert.ToDecimal(value);
- if (bcBinaryChecked())
- {
- if (trackBar4.Minimum > max || trackBar4.Maximum < max)
- {
- trackBar4.Value = trackBar4.Maximum;
- }
- else
- {
- trackBar4.Value = max;
- }
- if (numericUpDown5.Minimum > max || numericUpDown5.Maximum < max)
- {
- numericUpDown5.Value = numericUpDown5.Maximum;
- }
- else
- {
- numericUpDown5.Value = maxDec;
- }
- }
- break;
- case "parameter4":
- checkBox4.Checked = Convert.ToBoolean(value);
- break;
- case "parameter5":
- checkBox5.Checked = Convert.ToBoolean(value);
- break;
- case "parameter6":
- System.Drawing.Text.InstalledFontCollection fonts = new System.Drawing.Text.InstalledFontCollection();
- FontFamily fontFamily = fonts.Families[Convert.ToInt32(value)];
- fontStyle = fontFamily.Name;
- break;
- case "parameter7":
- fontSize = Convert.ToInt32(value);
- break;
- case "parameter8":
- int val2 = (int)value;
- fontColor = Color.FromArgb(val2);
- break;
- case "parameter9":
- numericUpDown6.Value = Convert.ToDecimal(value);
- break;
- case "OpenWhileExportReport":
- checkBox1.Checked = Convert.ToBoolean(value);
- break;
- case "CalculatorDecimalDigits":
- numericUpDown1.Value = Convert.ToDecimal(value);
- break;
- case "ExportResults":
- isExportResults = Convert.ToBoolean(value);
- break;
- case "ExportReports":
- isExportReports = Convert.ToBoolean(value);
- break;
- case "ExportProjects":
- isExportProjects = Convert.ToBoolean(value);
- break;
- }
- }
- private void startScriptAutomaticAction()
- {
- this.button11.PerformClick();
- this.button10.PerformClick();
- this.button6.Text = PdnResources.GetString("Menu.Cancelshowall.text");
- this.showAll = true;
- RefreshDataGridView2();
- if (isExportResults)//导出结果
- this.button9.PerformClick();
- if (isExportReports)//生成报告
- this.button8.PerformClick();
- if (isExportProjects)//导出项目
- this.button5.PerformClick();
- this.appWorkspace.ScriptAutomatic = false;
- this.Close();
- }
- #endregion
- #region [脚本录制]
- private void getScriptRecording()
- {
- string className = InvariantData.path_Action + ".Action" + menuId;
- ParamObject param = (ParamObject)System.Reflection.Assembly.Load(InvariantData.assembly_Data).CreateInstance(className);
- List<Args> args = param.Lists;
- foreach (var item in args)
- {
- item.value = setScriptRecording(item.key);
- }
- //找出二值相关参数 进行赋值
- List<Args> isNullList = args.Where(m => m.value == null).ToList();
- foreach (var item in isNullList)
- {
- item.value = binaryClass.setScriptRecording(item.key);
- }
- appWorkspace.SetScriptStartRecording(this.menuId, menuName, args);
- }
- private object setScriptRecording(string key)
- {
- object value = null;
- switch (key)
- {
- case "parameter1":
- value = checkBox3.Checked;
- break;
- case "parameter2":
- value = trackBar2.Value;
- break;
- case "parameter3":
- value = trackBar4.Value;
- break;
- case "parameter4":
- value = checkBox4.Checked;
- break;
- case "parameter5":
- value = checkBox5.Checked;
- break;
- case "parameter6":
- System.Drawing.Text.InstalledFontCollection fonts = new System.Drawing.Text.InstalledFontCollection();
- var fontList = fonts.Families.ToList();
- var defaultFont = fontList.Where(m => m.Name == "宋体").FirstOrDefault();
- var font = fontList.Where(m => m.Name == fontStyle).FirstOrDefault();
- value = font == null ? fontList.IndexOf(defaultFont) : fontList.IndexOf(font);
- break;
- case "parameter7":
- value = fontSize;
- break;
- case "parameter8":
- value = fontColor.ToArgb();
- break;
- case "parameter9":
- value = numericUpDown6.Value;
- break;
- case "OpenWhileExportReport":
- value = checkBox1.Checked;
- break;
- case "CalculatorDecimalDigits":
- value = numericUpDown1.Value;
- break;
- case "ExportResults":
- value = isExportResults;
- break;
- case "ExportReports":
- value = isExportReports;
- break;
- case "ExportProjects":
- value = isExportProjects;
- break;
- }
- return value;
- }
- #endregion
- }
- }
|