123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710 |
- using OpenCvSharp;
- using PaintDotNet.Base.CommTool;
- using PaintDotNet.Base.SettingModel;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.IO;
- using System.Windows.Forms;
- using Point = System.Drawing.Point;
- using PaintDotNet.Base.Functionodel;
- using PaintDotNet.Base.Enum;
- using PaintDotNet.Annotation.Enum;
- using PaintDotNet.CustomControl;
- using Application = System.Windows.Forms.Application;
- using GroupBox = System.Windows.Forms.GroupBox;
- using CheckBox = System.Windows.Forms.CheckBox;
- using Button = System.Windows.Forms.Button;
- using Label = System.Windows.Forms.Label;
- using PaintDotNet.DedicatedAnalysis.DuctileIron.Common;
- using System.Data;
- using Microsoft.Office.Interop.Excel;
- using Font = System.Drawing.Font;
- using DataTable = System.Data.DataTable;
- using PaintDotNet.DbOpreate.DbBll;
- using PaintDotNet.DbOpreate.DbModel;
- using PaintDotNet.Data.Param;
- using PaintDotNet.Instrument;
- using Metis.ParameterSet;
- using OpenCvSharp.Extensions;
- using PaintDotNet.Base;
- using System.Linq;
- namespace PaintDotNet.DedicatedAnalysis.PetroleumGeology.SYT5434_1999
- {
- internal class CharacteristicsOfRockParticlesDialog : PdnBaseForm
- {
- #region 控件
- private GroupBox groupBox1;
- private Button button2;
- private CheckBox checkBox2;
- private GroupBox groupBox2;
- private ListView listView1;
- private ImageList imageList1;
- private IContainer components;
- private PaintDotNet.CustomControl.BinaryControl bc;
- private GroupBox groupBox7;
- private GroupBox groupBox3;
- private CheckBox checkBox1;
- private CheckBox checkBox4;
- private CheckBox checkBox3;
- private GroupBox groupBox4;
- private CheckBox checkBox5;
- private CheckBox checkBox6;
- private Label label4;
- private Label label3;
- private Label label2;
- private Label label1;
- private GroupBox groupBox5;
- private DataGridView dataGridView1;
- private GroupBox groupBox8;
- private Button button4;
- private ListView listView2;
- private NumericUpDown numericUpDown1;
- private Button button16;
- private Label label5;
- private Button button14;
- private Button button13;
- private DataGridView dataGridView4;
- private Button button12;
- private Button button11;
- private DataGridView dataGridView2;
- private Button button1;
- #endregion
- /// <summary>
- /// 主控件
- /// </summary>
- private AppWorkspace appWorkspace;
- //二值化集成1
- BinaryClass binaryClass;
- private int menuId;
- private string menuName;
- /// <summary>
- /// 选中图片的mat
- /// </summary>
- private Mat imageMat;
- private DocumentWorkspaceWindow documentWorkspace;
- /// <summary>
- /// 公共按钮
- /// </summary>
- private CommonControlButtons commonControlButtons;
- /// <summary>
- /// 储存点击保存结果后的所有原图与分析图
- /// </summary>
- private Dictionary<string, List<Bitmap>> bitDic = new Dictionary<string, List<Bitmap>>();
- /// <summary>
- /// 处理程序
- /// </summary>
- private ParamObject action = new Data.Action.Action1010();
- /// <summary>
- /// 存在视场标记
- /// </summary>
- private bool existViewFlag = false;
- private NumericUpDown numericUpDown3;
- private NumericUpDown numericUpDown2;
- private Panel panel2;
- private Panel panel1;
- /// <summary>
- /// 调色板
- /// </summary>
- private ColorsForm colorsForm1;
- private ColorsForm colorsForm2;
- /// <summary>
- /// 全部显示
- /// </summary>
- private bool allShow = false;
- /// <summary>
- /// 当前选择的图片
- /// </summary>
- private Mat matOrg;
- /// <summary>
- /// 标尺
- /// </summary>
- private double unitLength = 1.0;
- /// <summary>
- /// 轮廓质点
- /// </summary>
- private List<Dictionary<Point2d, double[]>> keyValuePairs = new List<Dictionary<Point2d, double[]>>();
- /// <summary>
- /// 轮廓质点(所有分析结果)
- /// </summary>
- private Dictionary<string, List<Dictionary<Point2d, double[]>>> keyValuePairsAll = new Dictionary<string, List<Dictionary<Point2d, double[]>>>();
- /// <summary>
- /// 分析结果暂存
- /// </summary>
- private List<System.Data.DataTable> dataTables = new List<System.Data.DataTable>();
- /// <summary>
- /// 保存用于生成报告的图片
- /// </summary>
- private List<Bitmap> bitList;
- /// <summary>
- /// 中间数据
- /// </summary>
- private List<ExportProjectModel> tempDataModel = new List<ExportProjectModel>();
- /// <summary>
- /// 图解法统计数据
- /// </summary>
- private List<DataGridViewRow> dataGridViewRowsGraphic = new List<DataGridViewRow>();
- /// <summary>
- /// 矩阵法统计数据
- /// </summary>
- private List<DataGridViewRow> dataGridViewRowsMatrix = new List<DataGridViewRow>();
- /// <summary>
- /// 图解法统计数据
- /// </summary>
- private Dictionary<string, List<DataGridViewRow>> graphicMethods = new Dictionary<string, List<DataGridViewRow>>();
- /// <summary>
- /// 矩阵法统计数据
- /// </summary>
- private Dictionary<string, List<DataGridViewRow>> matrixMethods = new Dictionary<string, List<DataGridViewRow>>();
- /// <summary>
- /// 图解法统计数据(多视场Φ值)
- /// </summary>
- private List<DataTable> dataTablesFai = new List<DataTable>();
- private DataGridViewTextBoxColumn Column11;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
- private DataGridViewTextBoxColumn Column1;
- private DataGridViewTextBoxColumn Column2;
- private DataGridViewTextBoxColumn Column5;
- private DataGridViewTextBoxColumn Column6;
- private DataGridViewTextBoxColumn Column7;
- private DataGridViewTextBoxColumn Column3;
- private DataGridView dataGridView3;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
- private DataGridViewTextBoxColumn Column4;
- private DataGridViewTextBoxColumn Column9;
- private DataGridViewTextBoxColumn Column10;
- private DataGridViewTextBoxColumn Column8;
- private DataGridViewTextBoxColumn Column12;
- private DataGridViewTextBoxColumn Column13;
- private DataGridViewTextBoxColumn Column14;
- private DataGridViewTextBoxColumn Column15;
- private AppCommon appCommon;
- private int defaultIndex = -1;
- private bool isExportResults = false;
- private bool isExportReports = false;
- private bool isExportProjects = false;
- /// <summary>
- /// 是否脚本运行
- /// </summary>
- private Boolean initScriptValues = false;
- // <summary>
- /// 保存窗口参数 range
- /// </summary>
- /// <summary>
- /// 各个图片对应数据
- /// </summary>
- private Dictionary<string, GrainSizeAnalysisModel> eachData = new Dictionary<string, GrainSizeAnalysisModel>();
- private const string ParamKey_Report = "report";//报告设置
- private const string ParamKey_Correct = "correct";//筛析矫正
- private const string ParamKey_Graphic = "graphic";//图解法
- private const string ParamKey_Matrix = "matrix";//矩阵法
- private const string ParamKey_Number = "number";//显示颗粒编号
- private const string ParamKey_NumberFontSize = "numberFontSize";//编号字体大小
- private const string ParamKey_NumberColour = "numberColour";//编号颜色
- private const string ParamKey_Diameter = "diameter";//显示颗粒直径
- private const string ParamKey_DiameterFontSize = "diameterFontSize";//直径字体大小
- private const string ParamKey_DiameterColour = "diameterColour";//直径颜色
- private Button button3;
- private Button button5;
- private const string ParamKey_DecimalPlace = "decimalPlace";//保留小数位数
- public CharacteristicsOfRockParticlesDialog(AppWorkspace appWorkspace, PdnMenuItem menuItem)
- {
- this.menuId = menuItem.MenuId;
- this.menuName = menuItem.Text;
- binaryClass = new BinaryClass(menuId);
- this.appWorkspace = appWorkspace;
- NullKey();
- InitializeComponent();
- InitializeLanguageText();
- // 标尺
- //this.appWorkspace.getMeasureInfo().TryGetValue(MeasurementUnit.Millimeter, out unitLength);
- //
- //初始化色板
- //
- //调色板
- this.colorsForm1 = new ColorsForm();
- this.colorsForm1.StartPosition = FormStartPosition.CenterScreen;
- this.colorsForm1.UserPrimaryColorChanged += new ColorEventHandler(this.colorsFormUserPrimaryColorChanged);
- //调色板
- this.colorsForm2 = new ColorsForm();
- this.colorsForm2.StartPosition = FormStartPosition.CenterScreen;
- this.colorsForm2.UserPrimaryColorChanged += new ColorEventHandler(this.colorsFormUserPrimaryColorChanged);
- //
- //初始化图像控件
- //
- this.documentWorkspace = new DocumentWorkspaceWindow(appWorkspace);
- this.documentWorkspace.Dock = DockStyle.Fill;
- this.documentWorkspace.HookMouseEvents();
- this.documentWorkspace.AuxiliaryLineEnabled = false;
- this.documentWorkspace.Visible = false;
- //this.documentWorkspace.panel.MouseDown += OnMouseDown;
- this.documentWorkspace.panel.Paint += Panel_Paint;
- //this.documentWorkspace.panel.MouseMove += onMouseMove;
- //this.documentWorkspace.panel.MouseUp += onMouseUp;
- //this.documentWorkspace.panel.Click += new EventHandler(this.pictureBox1_Click);
- this.groupBox7.Controls.Add(documentWorkspace);
- //
- //初始化操作按钮
- //
- this.commonControlButtons = new CommonControlButtons();
- this.commonControlButtons.Dock = DockStyle.Top;
- this.commonControlButtons.Height = 30;
- this.commonControlButtons.HideZoomToWindowAndActualSize();
- this.groupBox7.Controls.Add(commonControlButtons);
- //初始化头
- this.listView2.View = View.Details;
- ColumnHeader header0 = new ColumnHeader();
- header0.Text = "";
- header0.Width = 180;
- this.listView2.Columns.Add(header0);
- InitCommonButtonEvent();
- Init();
- InitPicList();
- SetAnalyzeModelFromXml("Template.Manager.item3.Characteristics");
- //二值化集成2
- bc.OriginCheckedChangedAction += new EventHandler(this.bcOriginCheckedChanged);//初始化原图勾选改变事件
- binaryClass.createDocumentItems(new string[] { PdnResources.GetString("Menu.BinaryAction.BinaryExtraction.Text"), PdnResources.GetString("Menu.Grainboundarytoreproduce.text") }
- , this.bc, this.appWorkspace, this.documentWorkspace, this.listView1);//初始化相的工作结构
- binaryClass.BinaryImplFinishAction += new EventHandler(this.bClassBinaryImplFinishAction);//二值化后续处理事件
-
- for (int i = 0; i < this.dataGridView1.Columns.Count; i++)
- {
- this.dataGridView1.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable;
- }
- for (int i = 0; i < this.dataGridView2.Columns.Count; i++)
- {
- this.dataGridView2.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable;
- }
- for (int i = 0; i < this.dataGridView3.Columns.Count; i++)
- {
- this.dataGridView3.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable;
- }
- for (int i = 0; i < this.dataGridView4.Columns.Count; i++)
- {
- this.dataGridView4.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable;
- }
- }
- /// <summary>
- /// 初始化参数
- /// </summary>
- private void Init()
- {
- this.button11.Visible = true;
- this.button16.Visible = false;
- this.numericUpDown2.Value = 10;
- this.numericUpDown3.Value = 10;
- this.checkBox3.Checked = true;
- }
- private void ShowImgEvent(object sender, EventArgs e)
- {
- listView1.Focus();
- if (this.defaultIndex != -1)
- {
- this.listView1.Items[defaultIndex].Focused = true;
- this.listView1.Items[defaultIndex].Selected = true;
- //如果是脚本执行,将参数带入
- 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();
- }
- if (this.initScriptValues && this.appWorkspace.ScriptAutomatic)
- this.startScriptAutomaticAction();
- }
- }
- /// <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;
- }
- //二值化集成3
- #region 二值化相关方法
- private void InclusionsStandardDialog_FormClosing(object sender, FormClosingEventArgs e)
- {
- #region [开启脚本录制]
- if (appWorkspace.startScriptRecording)
- {
- getScriptRecording();
- }
- #endregion
- binaryClass.saveParams();
- this.saveDialogParamValues();
- //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 GrainSizeAnalysisMethodOfClasticRockDialog_Load(object sender, EventArgs e)
- {
- this.binaryClass.loadParams();
- if (this.initScriptValues && this.appWorkspace.ScriptAutomatic)
- this.startScriptAutomaticAction();
- }
- 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>
- private void bClassBinaryImplFinishAction(object sender, EventArgs e)
- {
- ScreeningSpheroidizedTissue();
- RefrashResultData();
- this.documentWorkspace.Refresh();
- }
- /// <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 = true;
- }
- else
- {
- this.documentWorkspace.PhaseModels[0].choise = false;
- this.documentWorkspace.PhaseModels[1].choise = false;
- }
- this.documentWorkspace.Refresh();
- }
- #endregion
- #region 公共控件
- 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;
- }
- #endregion
- /// <summary>
- /// 计算颗粒直径
- /// </summary>
- private void ScreeningSpheroidizedTissue()
- {
- appCommon = new AppCommon();
- // 计算所有轮廓质点
- keyValuePairs = new List<Dictionary<Point2d, double[]>>();
- if (this.documentWorkspace.phaseModels.Count == 0 || this.documentWorkspace.phaseModels[0].mat == null)
- return;
- if (this.documentWorkspace.GraphicsList.IsExsitView())
- {
- // 原始轮廓信息
- Mat temp = new Mat();
- this.documentWorkspace.phaseModels[0].mat.CopyTo(temp);
- List<OpenCvSharp.Point[][]> points = new List<OpenCvSharp.Point[][]>();//各石墨轮廓集合
- List<List<int>> lstAttribute = new List<List<int>>();//各个视场属性集合,索引0-横坐标,1-纵坐标,2-视场宽度,3-视场高度,4-视场面积
- int sumFieldl = 0; //视场个数
- //调用处理视场方法
- appCommon.MultiFieldView(appWorkspace, temp, listView1, documentWorkspace, out points, out lstAttribute, out sumFieldl);
- int viewCount = 0;
- int h = 0;
- foreach (OpenCvSharp.Point[][] contours in points)
- {
- h++;
- keyValuePairs.Add(new Dictionary<Point2d, double[]>());
- double[] thisAspectRatio;
- for (int i = 0; i < contours.Length; i++)
- {
- double area = Math.Abs(Cv2.ContourArea(contours[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];
- }
- thisAspectRatio = new double[3];
- if (contours[i].Length < 5)
- continue;
- else
- {
- OpenCvSharp.RotatedRect rect = OpenCvSharp.Cv2.FitEllipse(contours[i]);
- thisAspectRatio[0] = Convert.ToDouble(rect.Size.Width * this.unitLength);
- thisAspectRatio[2] = area;
- // 取得所有轮廓质点
- OpenCvSharp.Moments moments = new OpenCvSharp.Moments(contours[i], false);
- if (!double.IsNaN(moments.M10 / moments.M00) && !double.IsNaN(moments.M01 / moments.M00))
- keyValuePairs[viewCount].Add(new Point2d(moments.M10 / moments.M00, moments.M01 / moments.M00), thisAspectRatio);
- }
- }
- int count;
- if(keyValuePairs.Count > 0)
- {
- foreach (var item1 in keyValuePairs[viewCount])
- {
- count = 0;
- foreach (var item2 in keyValuePairs[viewCount])
- {
- if (item2.Value[0] < item1.Value[0])
- count++;
- }
- foreach (var item3 in keyValuePairs[0])
- {
- if (item3.Value[1] == count + 1)
- count++;
- }
- item1.Value[1] = count + 1;
- }
- }
- viewCount++;
- }
- }
- else
- {
- // 原始轮廓信息
- OpenCvSharp.Point[][] contours;
- HierarchyIndex[] hierachy;
- Mat temp = new Mat();
- this.documentWorkspace.phaseModels[0].mat.CopyTo(temp);
- List<List<OpenCvSharp.Point>> globularPoint = new List<List<OpenCvSharp.Point>>();
- List<List<OpenCvSharp.Point>> flakyPoint = new List<List<OpenCvSharp.Point>>();
- Cv2.FindContours(BinaryClass.BGRA2GRAY(temp), out contours, out hierachy, RetrievalModes.External, ContourApproximationModes.ApproxNone);
- if (hierachy.Length > 0)
- {
- keyValuePairs.Add(new Dictionary<Point2d, double[]>());
- double[] thisAspectRatio;
- for (int i = 0; i < hierachy.Length; i++)
- {
- thisAspectRatio = new double[3];
- double area = Math.Abs(Cv2.ContourArea(contours[i]));
- if (contours[i].Length < 5)
- continue;
- else
- {
- OpenCvSharp.RotatedRect rect = OpenCvSharp.Cv2.FitEllipse(contours[i]);
- thisAspectRatio[0] = Convert.ToDouble(rect.Size.Width * this.unitLength);
- thisAspectRatio[2] = area;
- // 取得所有轮廓质点
- OpenCvSharp.Moments moments = new OpenCvSharp.Moments(contours[i], false);
- if (!double.IsNaN(moments.M10 / moments.M00) && !double.IsNaN(moments.M01 / moments.M00))
- keyValuePairs[0].Add(new Point2d(moments.M10 / moments.M00, moments.M01 / moments.M00), thisAspectRatio);
- }
- }
- }
- int count;
- if (keyValuePairs.Count > 0)
- {
- foreach (var item1 in keyValuePairs[0])
- {
- count = 0;
- foreach (var item2 in keyValuePairs[0])
- {
- if (item2.Value[0] < item1.Value[0])
- count++;
- }
- foreach (var item3 in keyValuePairs[0])
- {
- if (item3.Value[1] == count + 1)
- count++;
- }
- item1.Value[1] = count + 1;
- }
- }
- }
- }
- /// <summary>
- /// 刷新结果数据
- /// </summary>
- private void RefrashResultData()
- {
- this.dataGridView1.Rows.Clear();
- this.dataGridView3.Rows.Clear();
- int viewCount = 0;
- this.dataGridViewRowsGraphic = new List<DataGridViewRow>();
- this.dataGridViewRowsMatrix = new List<DataGridViewRow>();
- // 巨砾
- double bouldersArea = 0;
- // 粗砾
- double coarseGravelArea = 0;
- // 中砾
- double mediuGravelArea = 0;
- // 细砾
- double fineGravelArea = 0;
- // 巨砂
- double giantSandArea = 0;
- // 粗砂
- double coarseSandArea = 0;
- // 中砂
- double mediumSandArea = 0;
- // 细砂
- double fineSandArea = 0;
- // 极细砂
- double superfineSandArea = 0;
- // 粗粉砂
- double coarseSiltArea = 0;
- // 细粉砂
- double fineSiltArea = 0;
- // 粘土
- double clayArea = 0;
- // 总和
- double allArea = 0;
- // 巨砾
- List<double> bouldersFais;
- // 粗砾
- List<double> coarseGravelFais;
- // 中砾
- List<double> mediuGravelFais;
- // 细砾
- List<double> fineGravelFais;
- // 巨砂
- List<double> giantSandFais;
- // 粗砂
- List<double> coarseSandFais;
- // 中砂
- List<double> mediumSandFais;
- // 细砂
- List<double> fineSandFais;
- // 极细砂
- List<double> superfineSandFais;
- // 粗粉砂
- List<double> coarseSiltFais;
- // 细粉砂
- List<double> fineSiltFais;
- // 粘土
- List<double> clayFais;
- foreach (var keyValuePair in keyValuePairs)
- {
- // 巨砾
- bouldersArea = 0;
- // 粗砾
- coarseGravelArea = 0;
- // 中砾
- mediuGravelArea = 0;
- // 细砾
- fineGravelArea = 0;
- // 巨砂
- giantSandArea = 0;
- // 粗砂
- coarseSandArea = 0;
- // 中砂
- mediumSandArea = 0;
- // 细砂
- fineSandArea = 0;
- // 极细砂
- superfineSandArea = 0;
- // 粗粉砂
- coarseSiltArea = 0;
- // 细粉砂
- fineSiltArea = 0;
- // 粘土
- clayArea = 0;
- // 总和
- allArea = 0;
- // 巨砾
- bouldersFais = new List<double>();
- // 粗砾
- coarseGravelFais = new List<double>();
- // 中砾
- mediuGravelFais = new List<double>();
- // 细砾
- fineGravelFais = new List<double>();
- // 巨砂
- giantSandFais = new List<double>();
- // 粗砂
- coarseSandFais = new List<double>();
- // 中砂
- mediumSandFais = new List<double>();
- // 细砂
- fineSandFais = new List<double>();
- // 极细砂
- superfineSandFais = new List<double>();
- // 粗粉砂
- coarseSiltFais = new List<double>();
- // 细粉砂
- fineSiltFais = new List<double>();
- // 粘土
- clayFais = new List<double>();
- foreach (var item in keyValuePair)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- foreach (DataGridViewColumn Column in this.dataGridView1.Columns)
- {
- dgvr.Cells.Add(Column.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = PdnResources.GetString("Menu.view.text") + viewCount;
- dgvr.Cells[1].Value = item.Value[1];
- dgvr.Cells[2].Value = Math.Round(item.Value[0], Convert.ToInt32(this.numericUpDown1.Value));
- if(item.Value[0] == 0)
- dgvr.Cells[3].Value = 0;
- else
- if(this.checkBox1.Checked)
- dgvr.Cells[3].Value = Math.Round(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2), Convert.ToInt32(this.numericUpDown1.Value));
- else
- dgvr.Cells[3].Value = Math.Round(-Math.Log((double)item.Value[0], 2), Convert.ToInt32(this.numericUpDown1.Value));
- this.dataGridView1.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- foreach (DataGridViewColumn Column in dataGridView3.Columns)
- {
- dgvr.Cells.Add(Column.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = PdnResources.GetString("Menu.view.text") + viewCount;
- dgvr.Cells[1].Value = item.Value[1];
- dgvr.Cells[2].Value = item.Value[0];
- if (item.Value[0] == 0)
- dgvr.Cells[3].Value = 0;
- else
- {
- if(this.checkBox1.Checked)
- dgvr.Cells[3].Value = 0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2);
- else
- dgvr.Cells[3].Value = -Math.Log((double)item.Value[0], 2);
- }
-
- dataGridView3.Rows.Add(dgvr);
- allArea += item.Value[2];
- // 巨砾
- if (item.Value[0] > 256)
- {
- bouldersArea += item.Value[2];
- if (this.checkBox1.Checked)
- bouldersFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- bouldersFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 粗砾
- if (item.Value[0] > 64 && item.Value[0] <= 256)
- {
- coarseGravelArea += item.Value[2];
- if (this.checkBox1.Checked)
- coarseGravelFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- coarseGravelFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 中砾
- if (item.Value[0] > 4 && item.Value[0] <= 64)
- {
- mediuGravelArea += item.Value[2];
- if (this.checkBox1.Checked)
- mediuGravelFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- mediuGravelFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 细砾
- if (item.Value[0] > 2 && item.Value[0] <= 4)
- {
- fineGravelArea += item.Value[2];
- if (this.checkBox1.Checked)
- fineGravelFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- fineGravelFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 巨砂
- if (item.Value[0] > 1 && item.Value[0] <= 2)
- {
- giantSandArea += item.Value[2];
- if (this.checkBox1.Checked)
- giantSandFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- giantSandFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 粗砂
- if (Convert.ToDouble(item.Value[0]) > 0.5 && item.Value[0] <= 1)
- {
- coarseSandArea += item.Value[2];
- if (this.checkBox1.Checked)
- coarseSandFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- coarseSandFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 中砂
- if (Convert.ToDouble(item.Value[0]) > 0.25 && Convert.ToDouble(item.Value[0]) <= 0.5)
- {
- mediumSandArea += item.Value[2];
- if (this.checkBox1.Checked)
- mediumSandFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- mediumSandFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 细砂
- if (Convert.ToDouble(item.Value[0]) > 0.125 && Convert.ToDouble(item.Value[0]) <= 0.25)
- {
- fineSandArea += item.Value[2];
- if (this.checkBox1.Checked)
- fineSandFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- fineSandFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 极细砂
- if (Convert.ToDouble(item.Value[0]) > 0.0625 && Convert.ToDouble(item.Value[0]) <= 0.125)
- {
- superfineSandArea += item.Value[2];
- if (this.checkBox1.Checked)
- superfineSandFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- superfineSandFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 粗粉砂
- if (Convert.ToDouble(item.Value[0]) > 0.0312 && Convert.ToDouble(item.Value[0]) <= 0.0625)
- {
- coarseSiltArea += item.Value[2];
- if (this.checkBox1.Checked)
- coarseSiltFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- coarseSiltFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 细粉砂
- if (Convert.ToDouble(item.Value[0]) > 0.0039 && Convert.ToDouble(item.Value[0]) <= 0.0312)
- {
- fineSiltArea += item.Value[2];
- if (this.checkBox1.Checked)
- fineSiltFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- fineSiltFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- // 粘土
- if (Convert.ToDouble(item.Value[0]) <= 0.0039)
- {
- clayArea += item.Value[2];
- if (this.checkBox1.Checked)
- clayFais.Add(0.3815 + 0.9027 * -Math.Log((double)item.Value[0], 2));
- else
- clayFais.Add(-Math.Log((double)item.Value[0], 2));
- }
- }
- //
- // 图解法
- //
- dataGridView3.Sort(dataGridView3.Columns[1], ListSortDirection.Descending);
- int count = dataGridView3.Rows.Count;
- double count5 = count * 0.05;
- double count16 = count * 0.16;
- double count25 = count * 0.25;
- double count50 = count * 0.5;
- double count75 = count * 0.75;
- double count84 = count * 0.84;
- double count95 = count * 0.95;
- double fai5 = 0;
- double fai16 = 0;
- double fai25 = 0;
- double fai50 = 0;
- double fai75 = 0;
- double fai84 = 0;
- double fai95 = 0;
- foreach (DataGridViewRow dataGridViewRow in dataGridView3.Rows)
- {
- if (Convert.ToDouble(dataGridViewRow.Index + 1)== Convert.ToInt32(count5))
- {
- if(dataGridViewRow.Cells[3].Value.ToString().Equals("0"))
- fai5 = 0;
- else
- fai5 = Convert.ToDouble(dataGridViewRow.Cells[3].Value);
- }
- if (Convert.ToDouble(dataGridViewRow.Index + 1) == Convert.ToInt32(count16))
- {
- if (dataGridViewRow.Cells[3].Value.ToString().Equals("0"))
- fai16 = 0;
- else
- fai16 = Convert.ToDouble(dataGridViewRow.Cells[3].Value);
- }
- if (Convert.ToDouble(dataGridViewRow.Index + 1) == Convert.ToInt32(count25))
- {
- if (dataGridViewRow.Cells[3].Value.ToString().Equals("0"))
- fai25 = 0;
- else
- fai25 = Convert.ToDouble(dataGridViewRow.Cells[3].Value);
- }
- if (Convert.ToDouble(dataGridViewRow.Index + 1) == Convert.ToInt32(count50))
- {
- if (dataGridViewRow.Cells[3].Value.ToString().Equals("0"))
- fai50 = 0;
- else
- fai50 = Convert.ToDouble(dataGridViewRow.Cells[3].Value);
- }
- if (Convert.ToDouble(dataGridViewRow.Index + 1) == Convert.ToInt32(count75))
- {
- if (dataGridViewRow.Cells[3].Value.ToString().Equals("0"))
- fai75 = 0;
- else
- fai75 = Convert.ToDouble(dataGridViewRow.Cells[3].Value);
- }
- if (Convert.ToDouble(dataGridViewRow.Index + 1) == Convert.ToInt32(count84))
- {
- if (dataGridViewRow.Cells[3].Value.ToString().Equals("0"))
- fai84 = 0;
- else
- fai84 = Convert.ToDouble(dataGridViewRow.Cells[3].Value);
- }
- if (Convert.ToDouble(dataGridViewRow.Index + 1) == Convert.ToInt32(count95))
- {
- if (dataGridViewRow.Cells[3].Value.ToString().Equals("0"))
- fai95 = 0;
- else
- fai95 = Convert.ToDouble(dataGridViewRow.Cells[3].Value);
- }
- }
- DataGridViewRow dataGridViewRow1 = new DataGridViewRow();
- foreach (DataGridViewColumn c in this.dataGridView2.Columns)
- {
- dataGridViewRow1.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dataGridViewRow1.Cells[0].Value = PdnResources.GetString("Menu.Graphicalmethod.text");
- dataGridViewRow1.Cells[1].Value = (fai16 + fai50 + fai84) / 3;
- dataGridViewRow1.Cells[2].Value = (fai84 - fai16) / 4 + (fai95 - fai5) / 6.6;
- dataGridViewRow1.Cells[3].Value = (fai16 + fai84 - 2 * fai50) / (2 * (fai84 - fai16)) + (fai5 + fai95 - 2 * fai50) / (2 * (fai95 - fai5));
- dataGridViewRow1.Cells[4].Value = (fai95 - fai5) / (2.44 * (fai75 - fai25));
- dataGridViewRow1.Cells[5].Value = PdnResources.GetString("Menu.Rocknamed.text");
- dataGridViewRow1.Cells[6].Value = fai5;
- dataGridViewRow1.Cells[7].Value = fai16;
- dataGridViewRow1.Cells[8].Value = fai25;
- dataGridViewRow1.Cells[9].Value = fai50;
- dataGridViewRow1.Cells[10].Value = fai75;
- dataGridViewRow1.Cells[11].Value = fai84;
- dataGridViewRow1.Cells[12].Value = fai95;
- this.dataGridViewRowsGraphic.Add(dataGridViewRow1);
- //
- // 矩阵法
- //
- //组值排序
- bouldersFais.Sort();
- coarseGravelFais.Sort();
- mediuGravelFais.Sort();
- fineGravelFais.Sort();
- giantSandFais.Sort();
- coarseSandFais.Sort();
- mediumSandFais.Sort();
- fineSandFais.Sort();
- superfineSandFais.Sort();
- coarseSiltFais.Sort();
- fineSiltFais.Sort();
- clayFais.Sort();
- // 组中值
- // 巨砾
- double medianBoulders = 0;
- // 粗砾
- double medianCoarseGravel = 0;
- // 中砾
- double medianMediuGravel = 0;
- // 细砾
- double medianFineGravel = 0;
- // 巨砂
- double medianGiantSand = 0;
- // 粗砂
- double medianCoarseSand = 0;
- // 中砂
- double medianMediumSand = 0;
- // 细砂
- double medianFineSand = 0;
- // 极细砂
- double medianSuperfineSand = 0;
- // 粗粉砂
- double medianCoarseSilt = 0;
- // 细粉砂
- double medianFineSilt = 0;
- // 粘土
- double medianClay = 0;
- if(bouldersFais.Count > 0)
- {
- if (bouldersFais.Count % 2 == 0)
- medianBoulders = (bouldersFais[bouldersFais.Count / 2 - 1] + bouldersFais[bouldersFais.Count / 2]) / 2;
- else
- medianBoulders = bouldersFais[(bouldersFais.Count - 1) / 2];
- }
- if (coarseGravelFais.Count > 0)
- {
- if (coarseGravelFais.Count % 2 == 0)
- medianCoarseGravel = (coarseGravelFais[coarseGravelFais.Count / 2 - 1] + coarseGravelFais[coarseGravelFais.Count / 2]) / 2;
- else
- medianCoarseGravel = coarseGravelFais[(coarseGravelFais.Count - 1) / 2];
- }
- if (mediuGravelFais.Count > 0)
- {
- if (mediuGravelFais.Count % 2 == 0)
- medianMediuGravel = (mediuGravelFais[mediuGravelFais.Count / 2 - 1] + mediuGravelFais[mediuGravelFais.Count / 2]) / 2;
- else
- medianMediuGravel = mediuGravelFais[(mediuGravelFais.Count - 1) / 2];
- }
- if (fineGravelFais.Count > 0)
- {
- if (fineGravelFais.Count % 2 == 0)
- medianFineGravel = (fineGravelFais[fineGravelFais.Count / 2 - 1] + fineGravelFais[fineGravelFais.Count / 2]) / 2;
- else
- medianFineGravel = fineGravelFais[(fineGravelFais.Count - 1) / 2];
- }
- if (giantSandFais.Count > 0)
- {
- if (giantSandFais.Count % 2 == 0)
- medianGiantSand = (giantSandFais[giantSandFais.Count / 2 - 1] + giantSandFais[giantSandFais.Count / 2]) / 2;
- else
- medianGiantSand = giantSandFais[(giantSandFais.Count - 1) / 2];
- }
- if (coarseSandFais.Count > 0)
- {
- if (coarseSandFais.Count % 2 == 0)
- medianCoarseSand = (coarseSandFais[coarseSandFais.Count / 2 - 1] + coarseSandFais[coarseSandFais.Count / 2]) / 2;
- else
- medianCoarseSand = coarseSandFais[(coarseSandFais.Count - 1) / 2];
- }
- if (mediumSandFais.Count > 0)
- {
- if (mediumSandFais.Count % 2 == 0)
- medianMediumSand = (mediumSandFais[mediumSandFais.Count / 2 - 1] + mediumSandFais[mediumSandFais.Count / 2]) / 2;
- else
- medianMediumSand = mediumSandFais[(mediumSandFais.Count - 1) / 2];
- }
- if (fineSandFais.Count > 0)
- {
- if (fineSandFais.Count % 2 == 0)
- medianFineSand = (fineSandFais[fineSandFais.Count / 2 - 1] + fineSandFais[fineSandFais.Count / 2]) / 2;
- else
- medianFineSand = fineSandFais[(fineSandFais.Count - 1) / 2];
- }
- if (superfineSandFais.Count > 0)
- {
- if (superfineSandFais.Count % 2 == 0)
- medianSuperfineSand = (superfineSandFais[superfineSandFais.Count / 2 - 1] + superfineSandFais[superfineSandFais.Count / 2]) / 2;
- else
- medianSuperfineSand = superfineSandFais[(superfineSandFais.Count - 1) / 2];
- }
- if (coarseSiltFais.Count > 0)
- {
- if (coarseSiltFais.Count % 2 == 0)
- medianCoarseSilt = (coarseSiltFais[coarseSiltFais.Count / 2 - 1] + coarseSiltFais[coarseSiltFais.Count / 2]) / 2;
- else
- medianCoarseSilt = coarseSiltFais[(coarseSiltFais.Count - 1) / 2];
- }
- if (fineSiltFais.Count > 0)
- {
- if (fineSiltFais.Count % 2 == 0)
- medianFineSilt = (fineSiltFais[fineSiltFais.Count / 2 - 1] + fineSiltFais[fineSiltFais.Count / 2]) / 2;
- else
- medianFineSilt = fineSiltFais[(fineSiltFais.Count - 1) / 2];
- }
- if (clayFais.Count > 0)
- {
- if (clayFais.Count % 2 == 0)
- medianClay = (clayFais[clayFais.Count / 2 - 1] + clayFais[clayFais.Count / 2]) / 2;
- else
- medianClay = clayFais[(clayFais.Count - 1) / 2];
- }
-
- // 组面积频率
- // 巨砾
- double fiBoulders = bouldersArea / allArea;
- // 粗砾
- double fiCoarseGravel = coarseGravelArea / allArea;
- // 中砾
- double fiMediuGravel = mediuGravelArea / allArea;
- // 细砾
- double fiFineGravel = fineGravelArea / allArea;
- // 巨砂
- double fiGiantSand = giantSandArea / allArea;
- // 粗砂
- double fiCoarseSand = coarseSandArea / allArea;
- // 中砂
- double fiMediumSand = mediumSandArea / allArea;
- // 细砂
- double fiFineSand = fineSandArea / allArea;
- // 极细砂
- double fiSuperfineSand = superfineSandArea / allArea;
- // 粗粉砂
- double fiCoarseSilt = coarseSiltArea / allArea;
- // 细粉砂
- double fiFineSilt = fineSiltArea / allArea;
- // 粘土
- double fiClay = clayArea / allArea;
- // 平均值
- double mz = (fiBoulders * medianBoulders + fiCoarseGravel * medianCoarseGravel + fiMediuGravel * medianCoarseGravel
- + fiFineGravel * medianFineGravel + fiGiantSand * medianGiantSand + fiCoarseSand * medianCoarseSand + fiMediumSand * medianMediumSand
- + fiFineSand * medianFineSand + fiSuperfineSand * medianSuperfineSand + fiCoarseSilt * medianCoarseSilt + fiFineSilt * medianFineSilt
- + fiClay * medianClay) / 100;
- // 标准偏差
- double a1 = Math.Sqrt((fiBoulders * Math.Pow((medianBoulders - mz), 2) + fiCoarseGravel * Math.Pow((medianCoarseGravel - mz), 2)
- + fiMediuGravel * Math.Pow((medianMediuGravel - mz), 2) + fiFineGravel * Math.Pow((medianFineGravel - mz), 2)
- + fiGiantSand * Math.Pow((medianGiantSand - mz), 2) + fiCoarseSand * Math.Pow((medianCoarseSand - mz), 2)
- + fiMediumSand * Math.Pow((medianMediumSand - mz), 2) + fiFineSand * Math.Pow((medianFineSand - mz), 2)
- + fiSuperfineSand * Math.Pow((medianSuperfineSand - mz), 2) + fiCoarseSilt * Math.Pow((medianCoarseSilt - mz), 2)
- + fiFineSilt * Math.Pow((medianFineSilt - mz), 2) + fiClay * Math.Pow((medianClay - mz), 2)) / 100);
- // 偏度
- double sk1 = (fiBoulders * Math.Pow((medianBoulders - mz), 3) + fiCoarseGravel * Math.Pow((medianCoarseGravel - mz), 3)
- + fiMediuGravel * Math.Pow((medianMediuGravel - mz), 3) + fiFineGravel * Math.Pow((medianFineGravel - mz), 3)
- + fiGiantSand * Math.Pow((medianGiantSand - mz), 3) + fiCoarseSand * Math.Pow((medianCoarseSand - mz), 3)
- + fiMediumSand * Math.Pow((medianMediumSand - mz), 3) + fiFineSand * Math.Pow((medianFineSand - mz), 3)
- + fiSuperfineSand * Math.Pow((medianSuperfineSand - mz), 3) + fiCoarseSilt * Math.Pow((medianCoarseSilt - mz), 3)
- + fiFineSilt * Math.Pow((medianFineSilt - mz), 3) + fiClay * Math.Pow((medianClay - mz), 3)) / (100 * Math.Pow(a1, 3));
- // 峰度
- double kg = (fiBoulders * Math.Pow((medianBoulders - mz), 4) + fiCoarseGravel * Math.Pow((medianCoarseGravel - mz), 4)
- + fiMediuGravel * Math.Pow((medianMediuGravel - mz), 4) + fiFineGravel * Math.Pow((medianFineGravel - mz), 4)
- + fiGiantSand * Math.Pow((medianGiantSand - mz), 4) + fiCoarseSand * Math.Pow((medianCoarseSand - mz), 4)
- + fiMediumSand * Math.Pow((medianMediumSand - mz), 4) + fiFineSand * Math.Pow((medianFineSand - mz), 4)
- + fiSuperfineSand * Math.Pow((medianSuperfineSand - mz), 4) + fiCoarseSilt * Math.Pow((medianCoarseSilt - mz), 4)
- + fiFineSilt * Math.Pow((medianFineSilt - mz), 4) + fiClay * Math.Pow((medianClay - mz), 4)) / (100 * Math.Pow(a1, 4));
- DataGridViewRow dataGridViewRow2 = new DataGridViewRow();
- foreach (DataGridViewColumn c in this.dataGridView2.Columns)
- {
- dataGridViewRow2.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dataGridViewRow2.Cells[0].Value = PdnResources.GetString("Menu.Matrixmethod.text");
- dataGridViewRow2.Cells[1].Value = mz;
- dataGridViewRow2.Cells[2].Value = a1;
- dataGridViewRow2.Cells[3].Value = sk1;
- dataGridViewRow2.Cells[4].Value = kg;
- dataGridViewRow2.Cells[5].Value = PdnResources.GetString("Menu.Rocknamed.text");
- dataGridViewRow2.Cells[6].Value = "-";
- dataGridViewRow2.Cells[7].Value = "-";
- dataGridViewRow2.Cells[8].Value = "-";
- dataGridViewRow2.Cells[9].Value = "-";
- dataGridViewRow2.Cells[10].Value = "-";
- dataGridViewRow2.Cells[11].Value = "-";
- dataGridViewRow2.Cells[12].Value = "-";
- this.dataGridViewRowsMatrix.Add(dataGridViewRow2);
- viewCount++;
- }
- this.dataGridView1.Sort(this.dataGridView1.Columns[1], ListSortDirection.Ascending);
- }
- #region 初始化
- 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(155, 68);
- 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 = 19;
- this.Controls.Add(this.bc);
- this.Controls.SetChildIndex(this.bc, 0);
- this.groupBox1.Text = PdnResources.GetString("Menu.operation.text");
- this.button2.Text = PdnResources.GetString("Menu.Saveresult.text");
- this.checkBox2.Text = PdnResources.GetString("Menu.Opensettingsatingreport.text");
- this.button1.Text = PdnResources.GetString("Menu.Setting.Text");
- this.groupBox2.Text = PdnResources.GetString("Menu.Tools.ImageIndex.Text");
- this.groupBox7.Text = PdnResources.GetString("Menu.Preview.text");
- this.groupBox3.Text = PdnResources.GetString("Menu.paramssettings.text");
- this.checkBox4.Text = PdnResources.GetString("Menu.Matrixmethod.text");
- this.checkBox3.Text = PdnResources.GetString("Menu.Graphicalmethod.text");
- this.checkBox1.Text = PdnResources.GetString("Menu.Sieveanalysiscorrection.text");
- this.groupBox4.Text = PdnResources.GetString("Menu.displaysetting.text");
- this.label4.Text = PdnResources.GetString("Menu.color.text") + ":";
- this.label3.Text = PdnResources.GetString("Menu.color.text") + ":";
- this.label2.Text = PdnResources.GetString("Menu.Fontsize.text") + ":";
- this.label1.Text = PdnResources.GetString("Menu.Fontsize.text") + ":";
- this.checkBox6.Text = PdnResources.GetString("Menu.Displayparticlediameter.text");
- this.checkBox5.Text = PdnResources.GetString("Menu.Displayparticlenumber.text");
- this.groupBox5.Text = PdnResources.GetString("Menu.Theesultshow.text");
- this.dataGridViewTextBoxColumn9.HeaderText = PdnResources.GetString("Menu.view.text");
- this.dataGridViewTextBoxColumn10.HeaderText = PdnResources.GetString("Menu.Dedicatedanalysis.Non-ferrousmetals.serialnumber.text");
- this.dataGridViewTextBoxColumn11.HeaderText = PdnResources.GetString("Menu.diameter.text");
- this.dataGridViewTextBoxColumn12.HeaderText = "Φ" + PdnResources.GetString("Menu.Imagement.Measurementlist.value.text");
- this.Column11.HeaderText = PdnResources.GetString("Menu.view.text");
- this.dataGridViewTextBoxColumn3.HeaderText = PdnResources.GetString("Menu.Dedicatedanalysis.Non-ferrousmetals.serialnumber.text");
- this.dataGridViewTextBoxColumn4.HeaderText = PdnResources.GetString("Menu.diameter.text");
- this.dataGridViewTextBoxColumn5.HeaderText = "Φ" + PdnResources.GetString("Menu.Imagement.Measurementlist.value.text");
- this.groupBox8.Text = PdnResources.GetString("Menu.Analysisresult.text");
- this.dataGridViewTextBoxColumn1.HeaderText = PdnResources.GetString("Menu.Methodnames.text");
- this.dataGridViewTextBoxColumn2.HeaderText = PdnResources.GetString("Menu.averagevalue.text");
- this.dataGridViewTextBoxColumn6.HeaderText = PdnResources.GetString("Menu.standarddeviation.text");
- this.dataGridViewTextBoxColumn7.HeaderText = PdnResources.GetString("Menu.Partialdegrees.text");
- this.dataGridViewTextBoxColumn8.HeaderText = PdnResources.GetString("Menu.kurtosis.text");
- this.Column4.HeaderText = PdnResources.GetString("Menu.Rocknamed.text");
- this.button4.Text = PdnResources.GetString("Menu.Exportproject.text");
- this.button16.Text = PdnResources.GetString("Menu.Cancelshowall.text");
- this.label5.Text = PdnResources.GetString("Menu.Decimal.text") + ":";
- this.button14.Text = PdnResources.GetString("Menu.Exportresults.text");
- this.button13.Text = PdnResources.GetString("Menu.Tools.CreateReport.Text");
- this.Column1.HeaderText = PdnResources.GetString("Menu.picture.Text");
- this.Column2.HeaderText = PdnResources.GetString("Menu.view.text");
- this.Column5.HeaderText = PdnResources.GetString("Menu.Categories.text");
- this.Column6.HeaderText = PdnResources.GetString("Menu.Smallclass.text");
- this.Column7.HeaderText = PdnResources.GetString("Menu.Number.text");
- this.Column3.HeaderText = PdnResources.GetString("Menu.percent.text");
- this.button12.Text = PdnResources.GetString("Menu.Edit.Delete.Text");
- this.button11.Text = PdnResources.GetString("Menu.Showall.text");
- this.Text = PdnResources.GetString("Menu.Rockgraincharacteristics.Text") + "_SYT6312-1997";
- this.button3.Text = PdnResources.GetString("Menu.File.SaveAll.Text");
- this.button5.Text = PdnResources.GetString("Menu.Applyall.text");
- }
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle56 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle57 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle61 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle62 = new System.Windows.Forms.DataGridViewCellStyle();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.button3 = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.checkBox2 = 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.groupBox7 = new System.Windows.Forms.GroupBox();
- this.groupBox3 = new System.Windows.Forms.GroupBox();
- this.checkBox4 = new System.Windows.Forms.CheckBox();
- this.checkBox3 = new System.Windows.Forms.CheckBox();
- this.checkBox1 = new System.Windows.Forms.CheckBox();
- this.groupBox4 = new System.Windows.Forms.GroupBox();
- this.panel2 = new System.Windows.Forms.Panel();
- this.panel1 = new System.Windows.Forms.Panel();
- this.numericUpDown3 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
- this.label4 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.checkBox6 = new System.Windows.Forms.CheckBox();
- this.checkBox5 = new System.Windows.Forms.CheckBox();
- this.groupBox5 = new System.Windows.Forms.GroupBox();
- this.dataGridView3 = new System.Windows.Forms.DataGridView();
- this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridView1 = new System.Windows.Forms.DataGridView();
- this.Column11 = 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.groupBox8 = new System.Windows.Forms.GroupBox();
- this.dataGridView2 = new System.Windows.Forms.DataGridView();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn2 = 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.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.button4 = new System.Windows.Forms.Button();
- this.listView2 = new System.Windows.Forms.ListView();
- this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
- this.button16 = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.button14 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.dataGridView4 = new System.Windows.Forms.DataGridView();
- this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column2 = 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.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.button12 = new System.Windows.Forms.Button();
- this.button11 = new System.Windows.Forms.Button();
- this.groupBox1.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.groupBox3.SuspendLayout();
- this.groupBox4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
- this.groupBox5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
- this.groupBox8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView4)).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.button3);
- this.groupBox1.Controls.Add(this.button5);
- this.groupBox1.Controls.Add(this.button2);
- this.groupBox1.Controls.Add(this.checkBox2);
- this.groupBox1.Controls.Add(this.button1);
- this.groupBox1.Location = new System.Drawing.Point(14, 12);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(1081, 50);
- this.groupBox1.TabIndex = 6;
- this.groupBox1.TabStop = false;
- //
- // button3
- //
- this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button3.Location = new System.Drawing.Point(991, 14);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(84, 30);
- this.button3.TabIndex = 21;
- this.button3.Text = "保存全部";
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // 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(811, 14);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(84, 30);
- this.button5.TabIndex = 20;
- this.button5.Text = "应用全部";
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button2
- //
- this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button2.BackColor = System.Drawing.SystemColors.Control;
- this.button2.Location = new System.Drawing.Point(901, 14);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(84, 30);
- this.button2.TabIndex = 3;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // checkBox2
- //
- this.checkBox2.AutoSize = true;
- this.checkBox2.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
- this.checkBox2.Location = new System.Drawing.Point(105, 20);
- this.checkBox2.Name = "checkBox2";
- this.checkBox2.Size = new System.Drawing.Size(15, 14);
- this.checkBox2.TabIndex = 2;
- this.checkBox2.UseVisualStyleBackColor = true;
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.SystemColors.Control;
- 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 = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.listView1);
- this.groupBox2.Location = new System.Drawing.Point(14, 68);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(135, 574);
- this.groupBox2.TabIndex = 7;
- 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, 551);
- 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);
- this.listView1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseUp);
- //
- // 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;
- //
- // groupBox7
- //
- this.groupBox7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.groupBox7.Location = new System.Drawing.Point(521, 68);
- this.groupBox7.Name = "groupBox7";
- this.groupBox7.Size = new System.Drawing.Size(580, 574);
- this.groupBox7.TabIndex = 20;
- this.groupBox7.TabStop = false;
- //
- // groupBox3
- //
- this.groupBox3.Controls.Add(this.checkBox4);
- this.groupBox3.Controls.Add(this.checkBox3);
- this.groupBox3.Controls.Add(this.checkBox1);
- this.groupBox3.Location = new System.Drawing.Point(155, 366);
- this.groupBox3.Name = "groupBox3";
- this.groupBox3.Size = new System.Drawing.Size(360, 62);
- this.groupBox3.TabIndex = 21;
- this.groupBox3.TabStop = false;
- //
- // checkBox4
- //
- this.checkBox4.AutoSize = true;
- this.checkBox4.Location = new System.Drawing.Point(102, 42);
- this.checkBox4.Name = "checkBox4";
- this.checkBox4.Size = new System.Drawing.Size(15, 14);
- this.checkBox4.TabIndex = 2;
- this.checkBox4.UseVisualStyleBackColor = true;
- this.checkBox4.CheckedChanged += new System.EventHandler(this.checkBox4_CheckedChanged);
- this.checkBox4.Click += new System.EventHandler(this.checkBox4_Click);
- //
- // checkBox3
- //
- this.checkBox3.AutoSize = true;
- this.checkBox3.Location = new System.Drawing.Point(18, 42);
- this.checkBox3.Name = "checkBox3";
- this.checkBox3.Size = new System.Drawing.Size(15, 14);
- this.checkBox3.TabIndex = 1;
- this.checkBox3.UseVisualStyleBackColor = true;
- this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
- this.checkBox3.Click += new System.EventHandler(this.checkBox3_Click);
- //
- // checkBox1
- //
- this.checkBox1.AutoSize = true;
- this.checkBox1.Location = new System.Drawing.Point(18, 20);
- this.checkBox1.Name = "checkBox1";
- this.checkBox1.Size = new System.Drawing.Size(15, 14);
- this.checkBox1.TabIndex = 0;
- this.checkBox1.UseVisualStyleBackColor = true;
- this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
- //
- // groupBox4
- //
- this.groupBox4.Controls.Add(this.panel2);
- this.groupBox4.Controls.Add(this.panel1);
- this.groupBox4.Controls.Add(this.numericUpDown3);
- this.groupBox4.Controls.Add(this.numericUpDown2);
- this.groupBox4.Controls.Add(this.label4);
- this.groupBox4.Controls.Add(this.label3);
- this.groupBox4.Controls.Add(this.label2);
- this.groupBox4.Controls.Add(this.label1);
- this.groupBox4.Controls.Add(this.checkBox6);
- this.groupBox4.Controls.Add(this.checkBox5);
- this.groupBox4.Location = new System.Drawing.Point(155, 434);
- this.groupBox4.Name = "groupBox4";
- this.groupBox4.Size = new System.Drawing.Size(360, 62);
- this.groupBox4.TabIndex = 22;
- this.groupBox4.TabStop = false;
- //
- // panel2
- //
- this.panel2.BackColor = System.Drawing.Color.Yellow;
- this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel2.Location = new System.Drawing.Point(266, 38);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(74, 21);
- this.panel2.TabIndex = 12;
- this.panel2.BackColorChanged += new System.EventHandler(this.panel2_BackColorChanged);
- this.panel2.Click += new System.EventHandler(this.panel2_Click);
- //
- // panel1
- //
- this.panel1.BackColor = System.Drawing.Color.Blue;
- this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel1.Location = new System.Drawing.Point(266, 14);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(74, 21);
- this.panel1.TabIndex = 11;
- this.panel1.BackColorChanged += new System.EventHandler(this.panel1_BackColorChanged);
- this.panel1.Click += new System.EventHandler(this.panel1_Click);
- //
- // numericUpDown3
- //
- this.numericUpDown3.Location = new System.Drawing.Point(165, 40);
- this.numericUpDown3.Maximum = new decimal(new int[] {
- 49000,
- 0,
- 0,
- 0});
- this.numericUpDown3.Name = "numericUpDown3";
- this.numericUpDown3.Size = new System.Drawing.Size(54, 21);
- this.numericUpDown3.TabIndex = 10;
- this.numericUpDown3.ValueChanged += new System.EventHandler(this.numericUpDown3_ValueChanged);
- //
- // numericUpDown2
- //
- this.numericUpDown2.Location = new System.Drawing.Point(165, 15);
- this.numericUpDown2.Maximum = new decimal(new int[] {
- 49000,
- 0,
- 0,
- 0});
- this.numericUpDown2.Name = "numericUpDown2";
- this.numericUpDown2.Size = new System.Drawing.Size(54, 21);
- this.numericUpDown2.TabIndex = 9;
- this.numericUpDown2.ValueChanged += new System.EventHandler(this.numericUpDown2_ValueChanged);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(226, 43);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(0, 12);
- this.label4.TabIndex = 8;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(226, 18);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(0, 12);
- this.label3.TabIndex = 7;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(128, 43);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(0, 12);
- this.label2.TabIndex = 6;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(128, 19);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(0, 12);
- this.label1.TabIndex = 5;
- //
- // checkBox6
- //
- this.checkBox6.AutoSize = true;
- this.checkBox6.Location = new System.Drawing.Point(18, 42);
- this.checkBox6.Name = "checkBox6";
- this.checkBox6.Size = new System.Drawing.Size(15, 14);
- this.checkBox6.TabIndex = 4;
- this.checkBox6.UseVisualStyleBackColor = true;
- this.checkBox6.CheckedChanged += new System.EventHandler(this.checkBox6_CheckedChanged);
- //
- // checkBox5
- //
- this.checkBox5.AutoSize = true;
- this.checkBox5.Location = new System.Drawing.Point(18, 18);
- this.checkBox5.Name = "checkBox5";
- this.checkBox5.Size = new System.Drawing.Size(15, 14);
- this.checkBox5.TabIndex = 3;
- this.checkBox5.UseVisualStyleBackColor = true;
- this.checkBox5.CheckedChanged += new System.EventHandler(this.checkBox5_CheckedChanged);
- //
- // groupBox5
- //
- this.groupBox5.Controls.Add(this.dataGridView3);
- this.groupBox5.Controls.Add(this.dataGridView1);
- this.groupBox5.Location = new System.Drawing.Point(155, 502);
- this.groupBox5.Name = "groupBox5";
- this.groupBox5.Size = new System.Drawing.Size(360, 140);
- this.groupBox5.TabIndex = 23;
- this.groupBox5.TabStop = false;
- //
- // dataGridView3
- //
- this.dataGridView3.AllowUserToAddRows = false;
- this.dataGridView3.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dataGridView3.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
- dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle32.BackColor = System.Drawing.SystemColors.Control;
- dataGridViewCellStyle32.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle32.ForeColor = System.Drawing.SystemColors.WindowText;
- dataGridViewCellStyle32.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle32.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle32.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridView3.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle32;
- this.dataGridView3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridView3.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn9,
- this.dataGridViewTextBoxColumn10,
- this.dataGridViewTextBoxColumn11,
- this.dataGridViewTextBoxColumn12});
- this.dataGridView3.Location = new System.Drawing.Point(6, 16);
- 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(348, 118);
- this.dataGridView3.TabIndex = 3;
- this.dataGridView3.Visible = false;
- //
- // dataGridViewTextBoxColumn9
- //
- dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- this.dataGridViewTextBoxColumn9.DefaultCellStyle = dataGridViewCellStyle33;
- this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
- this.dataGridViewTextBoxColumn9.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn10
- //
- dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn10.DefaultCellStyle = dataGridViewCellStyle34;
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn11
- //
- dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn11.DefaultCellStyle = dataGridViewCellStyle35;
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- this.dataGridViewTextBoxColumn11.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn12
- //
- dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle36;
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.ReadOnly = true;
- //
- // dataGridView1
- //
- this.dataGridView1.AllowUserToAddRows = false;
- this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
- dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle37.BackColor = System.Drawing.SystemColors.Control;
- dataGridViewCellStyle37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle37.ForeColor = System.Drawing.SystemColors.WindowText;
- dataGridViewCellStyle37.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle37.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle37.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle37;
- this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Column11,
- this.dataGridViewTextBoxColumn3,
- this.dataGridViewTextBoxColumn4,
- this.dataGridViewTextBoxColumn5});
- this.dataGridView1.Location = new System.Drawing.Point(6, 16);
- 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(348, 118);
- this.dataGridView1.TabIndex = 2;
- //
- // Column11
- //
- dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- this.Column11.DefaultCellStyle = dataGridViewCellStyle38;
- this.Column11.Name = "Column11";
- this.Column11.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn3
- //
- dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle39;
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- this.dataGridViewTextBoxColumn3.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn4
- //
- dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn4.DefaultCellStyle = dataGridViewCellStyle40;
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- this.dataGridViewTextBoxColumn4.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn5
- //
- dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle41;
- this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
- this.dataGridViewTextBoxColumn5.ReadOnly = true;
- //
- // groupBox8
- //
- this.groupBox8.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.groupBox8.Controls.Add(this.dataGridView2);
- this.groupBox8.Controls.Add(this.button4);
- this.groupBox8.Controls.Add(this.listView2);
- this.groupBox8.Controls.Add(this.numericUpDown1);
- this.groupBox8.Controls.Add(this.button16);
- this.groupBox8.Controls.Add(this.label5);
- this.groupBox8.Controls.Add(this.button14);
- this.groupBox8.Controls.Add(this.button13);
- this.groupBox8.Controls.Add(this.dataGridView4);
- this.groupBox8.Controls.Add(this.button12);
- this.groupBox8.Controls.Add(this.button11);
- this.groupBox8.Location = new System.Drawing.Point(14, 648);
- this.groupBox8.Name = "groupBox8";
- this.groupBox8.Size = new System.Drawing.Size(1087, 273);
- this.groupBox8.TabIndex = 24;
- this.groupBox8.TabStop = false;
- //
- // dataGridView2
- //
- this.dataGridView2.AllowUserToAddRows = 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.SystemColors.ControlLightLight;
- dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle42.BackColor = System.Drawing.SystemColors.Control;
- dataGridViewCellStyle42.Font = new System.Drawing.Font("宋体", 9F);
- dataGridViewCellStyle42.ForeColor = System.Drawing.SystemColors.WindowText;
- dataGridViewCellStyle42.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle42.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle42.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridView2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle42;
- this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn1,
- this.dataGridViewTextBoxColumn2,
- this.dataGridViewTextBoxColumn6,
- this.dataGridViewTextBoxColumn7,
- this.dataGridViewTextBoxColumn8,
- this.Column4,
- this.Column9,
- this.Column10,
- this.Column8,
- this.Column12,
- this.Column13,
- this.Column14,
- this.Column15});
- this.dataGridView2.Location = new System.Drawing.Point(228, 159);
- this.dataGridView2.Name = "dataGridView2";
- this.dataGridView2.ReadOnly = true;
- this.dataGridView2.RowHeadersVisible = false;
- this.dataGridView2.RowTemplate.Height = 23;
- this.dataGridView2.Size = new System.Drawing.Size(693, 108);
- this.dataGridView2.TabIndex = 24;
- //
- // dataGridViewTextBoxColumn1
- //
- dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle43;
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn2
- //
- dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle44;
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn6
- //
- dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle45;
- this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
- this.dataGridViewTextBoxColumn6.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn7
- //
- dataGridViewCellStyle46.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn7.DefaultCellStyle = dataGridViewCellStyle46;
- this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
- this.dataGridViewTextBoxColumn7.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn8
- //
- dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn8.DefaultCellStyle = dataGridViewCellStyle47;
- this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
- this.dataGridViewTextBoxColumn8.ReadOnly = true;
- //
- // Column4
- //
- dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- this.Column4.DefaultCellStyle = dataGridViewCellStyle48;
- this.Column4.Name = "Column4";
- this.Column4.ReadOnly = true;
- //
- // Column9
- //
- dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.Column9.DefaultCellStyle = dataGridViewCellStyle49;
- this.Column9.HeaderText = "Φ5";
- this.Column9.Name = "Column9";
- this.Column9.ReadOnly = true;
- //
- // Column10
- //
- dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.Column10.DefaultCellStyle = dataGridViewCellStyle50;
- this.Column10.HeaderText = "Φ16";
- this.Column10.Name = "Column10";
- this.Column10.ReadOnly = true;
- //
- // Column8
- //
- dataGridViewCellStyle51.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.Column8.DefaultCellStyle = dataGridViewCellStyle51;
- this.Column8.HeaderText = "Φ25";
- this.Column8.Name = "Column8";
- this.Column8.ReadOnly = true;
- //
- // Column12
- //
- dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.Column12.DefaultCellStyle = dataGridViewCellStyle52;
- this.Column12.HeaderText = "Φ50";
- this.Column12.Name = "Column12";
- this.Column12.ReadOnly = true;
- //
- // Column13
- //
- dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.Column13.DefaultCellStyle = dataGridViewCellStyle53;
- this.Column13.HeaderText = "Φ75";
- this.Column13.Name = "Column13";
- this.Column13.ReadOnly = true;
- //
- // Column14
- //
- dataGridViewCellStyle54.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.Column14.DefaultCellStyle = dataGridViewCellStyle54;
- this.Column14.HeaderText = "Φ84";
- this.Column14.Name = "Column14";
- this.Column14.ReadOnly = true;
- //
- // Column15
- //
- dataGridViewCellStyle55.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.Column15.DefaultCellStyle = dataGridViewCellStyle55;
- this.Column15.HeaderText = "Φ95";
- this.Column15.Name = "Column15";
- this.Column15.ReadOnly = true;
- //
- // button4
- //
- this.button4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button4.BackColor = System.Drawing.SystemColors.Control;
- this.button4.Location = new System.Drawing.Point(941, 102);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(128, 26);
- this.button4.TabIndex = 23;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // 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.FullRowSelect = true;
- this.listView2.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
- this.listView2.HideSelection = false;
- this.listView2.Location = new System.Drawing.Point(16, 56);
- this.listView2.Name = "listView2";
- this.listView2.Size = new System.Drawing.Size(180, 210);
- this.listView2.TabIndex = 22;
- this.listView2.UseCompatibleStateImageBehavior = false;
- this.listView2.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.listView2_ItemSelectionChanged);
- this.listView2.SelectedIndexChanged += new System.EventHandler(this.listView2_SelectedIndexChanged);
- //
- // numericUpDown1
- //
- this.numericUpDown1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.numericUpDown1.Location = new System.Drawing.Point(997, 163);
- this.numericUpDown1.Maximum = new decimal(new int[] {
- 10,
- 0,
- 0,
- 0});
- this.numericUpDown1.Name = "numericUpDown1";
- this.numericUpDown1.Size = new System.Drawing.Size(56, 21);
- this.numericUpDown1.TabIndex = 21;
- this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.SystemColors.Control;
- this.button16.Location = new System.Drawing.Point(15, 20);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(93, 26);
- this.button16.TabIndex = 20;
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // label5
- //
- this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(958, 169);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(0, 12);
- this.label5.TabIndex = 18;
- //
- // button14
- //
- this.button14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button14.BackColor = System.Drawing.SystemColors.Control;
- this.button14.Location = new System.Drawing.Point(941, 68);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(128, 26);
- this.button14.TabIndex = 16;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // button13
- //
- this.button13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button13.BackColor = System.Drawing.SystemColors.Control;
- this.button13.Location = new System.Drawing.Point(941, 34);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(128, 26);
- this.button13.TabIndex = 12;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // dataGridView4
- //
- this.dataGridView4.AllowUserToAddRows = false;
- this.dataGridView4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dataGridView4.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dataGridView4.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
- dataGridViewCellStyle56.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle56.BackColor = System.Drawing.SystemColors.Control;
- dataGridViewCellStyle56.Font = new System.Drawing.Font("宋体", 9F);
- dataGridViewCellStyle56.ForeColor = System.Drawing.SystemColors.WindowText;
- dataGridViewCellStyle56.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle56.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle56.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridView4.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle56;
- this.dataGridView4.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridView4.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Column1,
- this.Column2,
- this.Column5,
- this.Column6,
- this.Column7,
- this.Column3});
- this.dataGridView4.Location = new System.Drawing.Point(228, 20);
- this.dataGridView4.Name = "dataGridView4";
- this.dataGridView4.ReadOnly = true;
- this.dataGridView4.RowHeadersVisible = false;
- this.dataGridView4.RowTemplate.Height = 23;
- this.dataGridView4.Size = new System.Drawing.Size(693, 133);
- this.dataGridView4.TabIndex = 15;
- //
- // Column1
- //
- dataGridViewCellStyle57.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- this.Column1.DefaultCellStyle = dataGridViewCellStyle57;
- this.Column1.Name = "Column1";
- this.Column1.ReadOnly = true;
- //
- // Column2
- //
- dataGridViewCellStyle58.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- this.Column2.DefaultCellStyle = dataGridViewCellStyle58;
- this.Column2.Name = "Column2";
- this.Column2.ReadOnly = true;
- //
- // Column5
- //
- dataGridViewCellStyle59.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- this.Column5.DefaultCellStyle = dataGridViewCellStyle59;
- this.Column5.Name = "Column5";
- this.Column5.ReadOnly = true;
- //
- // Column6
- //
- dataGridViewCellStyle60.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- this.Column6.DefaultCellStyle = dataGridViewCellStyle60;
- this.Column6.Name = "Column6";
- this.Column6.ReadOnly = true;
- //
- // Column7
- //
- dataGridViewCellStyle61.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.Column7.DefaultCellStyle = dataGridViewCellStyle61;
- this.Column7.Name = "Column7";
- this.Column7.ReadOnly = true;
- //
- // Column3
- //
- dataGridViewCellStyle62.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.Column3.DefaultCellStyle = dataGridViewCellStyle62;
- this.Column3.Name = "Column3";
- this.Column3.ReadOnly = true;
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.SystemColors.Control;
- this.button12.Location = new System.Drawing.Point(145, 20);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(52, 26);
- this.button12.TabIndex = 13;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.SystemColors.Control;
- this.button11.Location = new System.Drawing.Point(15, 20);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(63, 26);
- this.button11.TabIndex = 12;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // CharacteristicsOfRockParticlesDialog
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.ClientSize = new System.Drawing.Size(1107, 933);
- this.Controls.Add(this.groupBox8);
- this.Controls.Add(this.groupBox5);
- this.Controls.Add(this.groupBox4);
- this.Controls.Add(this.groupBox3);
- this.Controls.Add(this.groupBox7);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.groupBox1);
- this.Name = "CharacteristicsOfRockParticlesDialog";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.InclusionsStandardDialog_FormClosing);
- this.Load += new System.EventHandler(this.GrainSizeAnalysisMethodOfClasticRockDialog_Load);
- this.Shown += new System.EventHandler(this.ShownChoiseItemAndInitData);
- this.Controls.SetChildIndex(this.groupBox1, 0);
- this.Controls.SetChildIndex(this.groupBox2, 0);
- this.Controls.SetChildIndex(this.groupBox7, 0);
- this.Controls.SetChildIndex(this.groupBox3, 0);
- this.Controls.SetChildIndex(this.groupBox4, 0);
- this.Controls.SetChildIndex(this.groupBox5, 0);
- this.Controls.SetChildIndex(this.groupBox8, 0);
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.groupBox2.ResumeLayout(false);
- this.groupBox3.ResumeLayout(false);
- this.groupBox3.PerformLayout();
- this.groupBox4.ResumeLayout(false);
- this.groupBox4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
- this.groupBox5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
- this.groupBox8.ResumeLayout(false);
- this.groupBox8.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView4)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private void colorsFormUserPrimaryColorChanged(object sender, ColorEventArgs ce)
- {
- }
- private void panel1_Click(object sender, EventArgs e)
- {
- this.colorsForm1.UserPrimaryColor = ColorBgra.FromColor(this.panel1.BackColor);
- this.colorsForm1.setSaveBtn_Click(new System.EventHandler(this.panel1Changed));
- this.colorsForm1.ShowDialog();
- }
- private void panel1Changed(object sender, EventArgs e)
- {
- this.panel1.BackColor = this.colorsForm1.UserPrimaryColor.ToColor();
- this.colorsForm1.Close();
- }
- private void panel2_Click(object sender, EventArgs e)
- {
- this.colorsForm2.UserPrimaryColor = ColorBgra.FromColor(this.panel2.BackColor);
- this.colorsForm2.setSaveBtn_Click(new System.EventHandler(this.panel2Changed));
- this.colorsForm2.ShowDialog();
- }
- private void panel2Changed(object sender, EventArgs e)
- {
- this.panel2.BackColor = this.colorsForm2.UserPrimaryColor.ToColor();
- this.colorsForm2.Close();
- }
- /// <summary>
- /// ListView图片选择改变事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void listView1_SelectedIndexChanged(object sender, EventArgs e)
- {
- if (this.listView1.FocusedItem != null && this.listView1.FocusedItem.Selected)
- {
- this.unitLength = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRuler(MeasurementUnit.Millimeter);
-
- //double physical_area_length_Micron = getCurrentWorkspace().GetRuler(MeasurementUnit.Micron);
- existViewFlag = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GraphicsList.IsExsitView();
- this.imageMat = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].CompositionSurface.CreatedAliasedMat();
- if (!existViewFlag)
- matOrg = imageMat.Clone();
- else
- matOrg = PaintDotNet.Camera.Tools.ToMat(this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetFullSizeWithRegion());
- //二值化集成4
- binaryClass.listView1_SelectedIndexChangedNoCheckedChanged(this.imageMat.Clone(), this.imageList1.Images.Keys[this.listView1.FocusedItem.Index]);
- if (bcOriginChecked())
- {
- this.documentWorkspace.PhaseModels[0].choise = false;
- this.documentWorkspace.PhaseModels[1].choise = false;
- this.documentWorkspace.Refresh();
- }
- ScreeningSpheroidizedTissue();
- RefrashResultData();
-
- //if (this.grainBoundryCheckBox.Checked)
- //{
- // this.documentWorkspace.PhaseModels[1].choise = true;
- // this.applyDect();
- //}
- }
- }
- /// <summary>
- /// 颗粒编号改变
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void numericUpDown2_ValueChanged(object sender, EventArgs e)
- {
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 颗粒直径改变
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void numericUpDown3_ValueChanged(object sender, EventArgs e)
- {
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 字体颜色改变
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void panel1_BackColorChanged(object sender, EventArgs e)
- {
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 字体颜色改变
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void panel2_BackColorChanged(object sender, EventArgs e)
- {
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 画布绘制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void Panel_Paint(object sender, PaintEventArgs e)
- {
- if (this.documentWorkspace.CompositionSurface != null)
- {
- //
- // 以下是计算绘制图片的位置和大小并绘制图片
- //
- System.Drawing.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);
- }
- }
- private void Draw(Graphics graphics)
- {
- foreach (var keyValuePair in keyValuePairs)
- {
- if (keyValuePair.Count > 0)
- {
- if (this.checkBox5.Checked && this.checkBox6.Checked)
- {
- foreach (var item in keyValuePair)
- {
- graphics.DrawString("(" + item.Value[1] + "): ", new Font("宋体", (float)this.numericUpDown2.Value), new SolidBrush(this.panel1.BackColor), new PointF((float)item.Key.X, (float)item.Key.Y));
- SizeF sizeF = graphics.MeasureString("(" + item.Value[1] + ")", new Font("宋体", (float)this.numericUpDown2.Value));
- graphics.DrawString("" + Math.Round(item.Value[0], Convert.ToInt32(this.numericUpDown1.Value)), new Font("宋体", (float)this.numericUpDown3.Value), new SolidBrush(this.panel2.BackColor), new PointF((float)item.Key.X + sizeF.Width, (float)item.Key.Y));
- }
- }
- else if (!this.checkBox5.Checked && this.checkBox6.Checked)
- {
- foreach (var item in keyValuePair)
- {
- graphics.DrawString("" + Math.Round(item.Value[0], Convert.ToInt32(this.numericUpDown1.Value)), new Font("宋体", (float)this.numericUpDown3.Value), new SolidBrush(this.panel2.BackColor), new PointF((float)item.Key.X, (float)item.Key.Y));
- }
- }
- else if (this.checkBox5.Checked && !this.checkBox6.Checked)
- {
- foreach (var item in keyValuePair)
- {
- graphics.DrawString("(" + item.Value[1] + ")", new Font("宋体", (float)this.numericUpDown2.Value), new SolidBrush(this.panel1.BackColor), new PointF((float)item.Key.X, (float)item.Key.Y));
- }
- }
- }
- }
- }
- /// <summary>
- /// 是否显示编号
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox5_CheckedChanged(object sender, EventArgs e)
- {
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 是否显示直径
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox6_CheckedChanged(object sender, EventArgs e)
- {
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 图解法
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox3_CheckedChanged(object sender, EventArgs e)
- {
- if(this.checkBox3.Checked)
- {
- this.checkBox4.Checked = false;
- this.dataGridView2.Columns[6].Visible = true;
- this.dataGridView2.Columns[7].Visible = true;
- this.dataGridView2.Columns[8].Visible = true;
- this.dataGridView2.Columns[9].Visible = true;
- this.dataGridView2.Columns[10].Visible = true;
- this.dataGridView2.Columns[11].Visible = true;
- this.dataGridView2.Columns[12].Visible = true;
- }
- else
- {
- this.dataGridView2.Columns[6].Visible = false;
- this.dataGridView2.Columns[7].Visible = false;
- this.dataGridView2.Columns[8].Visible = false;
- this.dataGridView2.Columns[9].Visible = false;
- this.dataGridView2.Columns[10].Visible = false;
- this.dataGridView2.Columns[11].Visible = false;
- this.dataGridView2.Columns[12].Visible = false;
- }
- RefreshStatistics();
- }
- /// <summary>
- /// 矩阵法
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox4_CheckedChanged(object sender, EventArgs e)
- {
- if (this.checkBox4.Checked)
- {
- this.checkBox3.Checked = false;
- }
- RefreshStatistics();
- }
- /// <summary>
- /// 筛析校正
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox1_CheckedChanged(object sender, EventArgs e)
- {
- RefrashResultData();
- }
- /// <summary>
- /// 图解法
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox3_Click(object sender, EventArgs e)
- {
- if (!this.checkBox4.Checked)
- checkBox3.Checked = true;
- }
- /// <summary>
- /// 矩阵法
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void checkBox4_Click(object sender, EventArgs e)
- {
- if (!this.checkBox3.Checked)
- checkBox4.Checked = true;
- }
- /// <summary>
- /// 小数变化
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void numericUpDown1_ValueChanged(object sender, EventArgs e)
- {
- RefrashResultData();
- RefreshDataGridView4();
- RefreshStatistics();
- this.documentWorkspace.Refresh();
- }
- /// <summary>
- /// 保存结果
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button2_Click(object sender, EventArgs e)
- {
- if (this.listView1.SelectedItems.Count == 0)
- {
- MessageBox.Show(PdnResources.GetString("Menu.Pleaseselectapicture.text")+"!");
- return;
- }
- if (this.dataGridView1.Rows.Count == 0)
- {
- MessageBox.Show(PdnResources.GetString("Menu.Noresultdata.text")+"!");
- return;
- }
- string imgName = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetFriendlyName();
- string tag = this.imageList1.Images.Keys[this.listView1.SelectedItems[0].Index];
- DataTable dataTable = new DataTable();
- bool replace = false;
- int add = 0;
- foreach (ListViewItem item in this.listView2.Items)
- {
- if (item.Tag.Equals(tag))
- {
- add++;
- DialogResult dr = MessageBox.Show(PdnResources.GetString("Menu.Theresuethertoreplace.text")+"?", PdnResources.GetString("Menu.hint.text"), MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
- if (dr == DialogResult.OK)
- {
- replace = true;
- this.listView2.Items.Remove(item);
- foreach (var keyValuePairs in keyValuePairsAll)
- {
- if (keyValuePairs.Key.Equals(tag))
- {
- this.keyValuePairsAll.Remove(tag);
- break;
- }
- }
- foreach (var graphicMethod in graphicMethods)
- {
- if (graphicMethod.Key.Equals(tag))
- {
- this.graphicMethods.Remove(tag);
- break;
- }
- }
- foreach (var matrixMethod in matrixMethods)
- {
- if (matrixMethod.Key.Equals(tag))
- {
- this.matrixMethods.Remove(tag);
- break;
- }
- }
- }
- break;
- }
- }
- if (replace || this.listView2.Items.Count == 0 || add == 0)
- {
- this.keyValuePairsAll.Add(tag, this.keyValuePairs);
- this.graphicMethods.Add(tag, this.dataGridViewRowsGraphic);
- this.matrixMethods.Add(tag, this.dataGridViewRowsMatrix);
- ListViewItem listViewItem = new ListViewItem();
- listViewItem.SubItems[0].Text = imgName;
- listViewItem.Tag = "" + tag;
- if (this.listView2.Items.Count == 0)
- this.listView2.Items.Add(listViewItem);
- else
- this.listView2.Items.Insert(0, listViewItem);
- this.dataGridView4.Rows.Clear();
- for (int i = 0; i < keyValuePairs.Count; i++)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.gravel.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.boulder.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.gravel.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.boulwder.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.gravel.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.Thegravel.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.gravel.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.Finegravel.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.sand.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.bigsand.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.sand.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.Coarsesand.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.sand.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.Mediumsand.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.sand.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.Finesand.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.sand.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.Veryfinesand.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.silt.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.Coarsesilt.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.silt.text");
- dgvr.Cells[3].Value = PdnResources.GetString("Menu.Fineowdersand.text");
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- dgvr = new DataGridViewRow();
- dgvr.Tag = tag;
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = imgName;
- dgvr.Cells[1].Value = PdnResources.GetString("Menu.view.text") + i;
- dgvr.Cells[2].Value = PdnResources.GetString("Menu.clay.text");
- dgvr.Cells[3].Value = "-";
- dgvr.Cells[4].Value = 0;
- dgvr.Cells[5].Value = 0;
- this.dataGridView4.Rows.Add(dgvr);
- }
- double index = 0;
- // 巨砾
- double boulders = 0;
- // 粗砾
- double coarseGravel = 0;
- // 中砾
- double mediuGravel = 0;
- // 细砾
- double fineGravel = 0;
- // 巨砂
- double giantSand = 0;
- // 粗砂
- double coarseSand = 0;
- // 中砂
- double mediumSand = 0;
- // 细砂
- double fineSand = 0;
- // 极细砂
- double superfineSand = 0;
- // 粗粉砂
- double coarseSilt = 0;
- // 细粉砂
- double fineSilt = 0;
- // 粘土
- double clay = 0;
- // 总和
- double all = 0;
- foreach (var keyValuePair in keyValuePairs)
- {
- // 巨砾
- boulders = 0;
- // 粗砾
- coarseGravel = 0;
- // 中砾
- mediuGravel = 0;
- // 细砾
- fineGravel = 0;
- // 巨砂
- giantSand = 0;
- // 粗砂
- coarseSand = 0;
- // 中砂
- mediumSand = 0;
- // 细砂
- fineSand = 0;
- // 极细砂
- superfineSand = 0;
- // 粗粉砂
- coarseSilt = 0;
- // 细粉砂
- fineSilt = 0;
- // 粘土
- clay = 0;
- foreach (var item in keyValuePair)
- {
- // 巨砾
- if (item.Value[0] > 256) boulders++;
- // 粗砾
- if (item.Value[0] > 64 && item.Value[0] <= 256) coarseGravel++;
- // 中砾
- if (item.Value[0] > 4 && item.Value[0] <= 64) mediuGravel++;
- // 细砾
- if (item.Value[0] > 2 && item.Value[0] <= 4) fineGravel++;
- // 巨砂
- if (item.Value[0] > 1 && item.Value[0] <= 2) giantSand++;
- // 粗砂
- if (Convert.ToDouble( item.Value[0]) > 0.5 && item.Value[0] <= 1) coarseSand++;
- // 中砂
- if (Convert.ToDouble(item.Value[0]) > 0.25 && Convert.ToDouble(item.Value[0]) <= 0.5) mediumSand++;
- // 细砂
- if (Convert.ToDouble(item.Value[0]) > 0.125 && Convert.ToDouble(item.Value[0]) <= 0.25) fineSand++;
- // 极细砂
- if (Convert.ToDouble(item.Value[0]) > 0.0625 && Convert.ToDouble(item.Value[0]) <= 0.125) superfineSand++;
- // 粗粉砂
- if (Convert.ToDouble(item.Value[0]) > 0.0312 && Convert.ToDouble(item.Value[0]) <= 0.0625) coarseSilt++;
- // 细粉砂
- if (Convert.ToDouble(item.Value[0]) > 0.0039 && Convert.ToDouble(item.Value[0]) <= 0.0312) fineSilt++;
- // 粘土
- if (Convert.ToDouble(item.Value[0]) <= 0.0039) clay++;
- }
- all = boulders + coarseGravel + mediuGravel + fineGravel + giantSand
- + coarseSand + mediumSand + fineSand + superfineSand + coarseSilt + fineSilt + clay;
- foreach (DataGridViewRow dataGridViewRow in this.dataGridView4.Rows)
- {
- if(dataGridViewRow.Cells[1].Value.Equals(PdnResources.GetString("Menu.view.text") + index))
- {
- if (dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.boulder.text")))
- {
- dataGridViewRow.Cells[4].Value = boulders;
- dataGridViewRow.Cells[5].Value = Math.Round(boulders / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if (dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.boulwder.text")))
- {
- dataGridViewRow.Cells[4].Value = coarseGravel;
- dataGridViewRow.Cells[5].Value = Math.Round(coarseGravel / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if(dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.Thegravel.text")))
- {
- dataGridViewRow.Cells[4].Value = mediuGravel;
- dataGridViewRow.Cells[5].Value = Math.Round(mediuGravel / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if (dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.Finegravel.text")))
- {
- dataGridViewRow.Cells[4].Value = fineGravel;
- dataGridViewRow.Cells[5].Value = Math.Round(fineGravel / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if (dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.bigsand.text")))
- {
- dataGridViewRow.Cells[4].Value = giantSand;
- dataGridViewRow.Cells[5].Value = Math.Round(giantSand / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if (dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.Coarsesand.text")))
- {
- dataGridViewRow.Cells[4].Value = coarseSand;
- dataGridViewRow.Cells[5].Value = Math.Round(coarseSand / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if (dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.Mediumsand.text")))
- {
- dataGridViewRow.Cells[4].Value = mediumSand;
- dataGridViewRow.Cells[5].Value = Math.Round(mediumSand / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if (dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.Finesand.text")))
- {
- dataGridViewRow.Cells[4].Value = fineSand;
- dataGridViewRow.Cells[5].Value = Math.Round(fineSand / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if (dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.Veryfinesand.text")))
- {
- dataGridViewRow.Cells[4].Value = superfineSand;
- dataGridViewRow.Cells[5].Value = Math.Round(superfineSand / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if (dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.Coarsesilt.text")))
- {
- dataGridViewRow.Cells[4].Value = coarseSilt;
- dataGridViewRow.Cells[5].Value = Math.Round(coarseSilt / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if (dataGridViewRow.Cells[3].Value.Equals(PdnResources.GetString("Menu.Fineowdersand.text")))
- {
- dataGridViewRow.Cells[4].Value = fineSilt;
- dataGridViewRow.Cells[5].Value = Math.Round(fineSilt / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- else if (dataGridViewRow.Cells[2].Value.Equals(PdnResources.GetString("Menu.clay.text")))
- {
- dataGridViewRow.Cells[4].Value = clay;
- dataGridViewRow.Cells[5].Value = Math.Round(clay / all, Convert.ToInt32(this.numericUpDown1.Value)) * 100 + "%";
- }
- }
- }
- index++;
- }
- dataTable.TableName = tag;
- foreach (System.Data.DataTable dataTable1 in dataTables)
- {
- if (dataTable1.TableName.Equals(dataTable.TableName))
- {
- dataTables.Remove(dataTable1);
- break;
- }
- }
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dataTable.Columns.Add(c.HeaderText);
- }
- for (int i = 0; i < keyValuePairs.Count; i++)
- {
- DataRow dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.gravel.text");
- dataRow[3] = PdnResources.GetString("Menu.boulder.text");
- dataRow[4] = boulders;
- dataRow[5] = boulders / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.gravel.text");
- dataRow[3] = PdnResources.GetString("Menu.boulwder.text");
- dataRow[4] = coarseGravel;
- dataRow[5] = coarseGravel / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.gravel.text");
- dataRow[3] = PdnResources.GetString("Menu.Thegravel.text");
- dataRow[4] = mediuGravel;
- dataRow[5] = mediuGravel / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.gravel.text");
- dataRow[3] = PdnResources.GetString("Menu.Finegravel.text");
- dataRow[4] = fineGravel;
- dataRow[5] = fineGravel / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.sand.text");
- dataRow[3] = PdnResources.GetString("Menu.bigsand.text");
- dataRow[4] = giantSand;
- dataRow[5] = giantSand / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.sand.text");
- dataRow[3] = PdnResources.GetString("Menu.Coarsesand.text");
- dataRow[4] = coarseSand;
- dataRow[5] = coarseSand / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.sand.text");
- dataRow[3] = PdnResources.GetString("Menu.Mediumsand.text");
- dataRow[4] = mediumSand;
- dataRow[5] = mediumSand / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.sand.text");
- dataRow[3] = PdnResources.GetString("Menu.Finesand.text");
- dataRow[4] = fineSand;
- dataRow[5] = fineSand / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.sand.text");
- dataRow[3] = PdnResources.GetString("Menu.Veryfinesand.text");
- dataRow[4] = superfineSand;
- dataRow[5] = superfineSand / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.silt.text");
- dataRow[3] = PdnResources.GetString("Menu.Coarsesilt.text");
- dataRow[4] = coarseSilt;
- dataRow[5] = coarseSilt / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.silt.text");
- dataRow[3] = PdnResources.GetString("Menu.Fineowdersand.text");
- dataRow[4] = fineSilt;
- dataRow[5] = fineSilt / all * 100;
- dataTable.Rows.Add(dataRow);
- dataRow = dataTable.NewRow();
- dataRow[0] = imgName;
- dataRow[1] = PdnResources.GetString("Menu.view.text") + i;
- dataRow[2] = PdnResources.GetString("Menu.Theclay.text");
- dataRow[3] = "-";
- dataRow[4] = clay;
- dataRow[5] = clay / all * 100;
- dataTable.Rows.Add(dataRow);
- }
- this.dataTables.Add(dataTable);
- if (this.allShow)
- AllShow();
- this.listView2.Items[0].Selected = true;
- //保存处理后的图片
- 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);
-
- //Mat mat = new Mat();
- Bitmap processedBit = BitmapConverter.ToBitmap(this.documentWorkspace.PhaseModels[0].mat);
- //this.documentWorkspace.PhaseModels[0].mat.CopyTo(mat);
- Bitmap newBit = originalBit.Clone(new System.Drawing.Rectangle(0, 0, originalBit.Width, originalBit.Height), originalBit.PixelFormat);
- //Bitmap newBit = OpenCvSharp.Extensions.BitmapConverter.ToBitmap(mat);
- 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.diameter.text"));
- columnName.Add("Φ"+ PdnResources.GetString("Menu.Imagement.Measurementlist.value.text"));
- dataList.Add(columnName);
- int no = 0;
- foreach (var keyValuePairs in keyValuePairsAll)
- {
- foreach (var item in keyValuePairs.Value)
- {
- foreach (var value in item)
- {
- no++;
- List<string> strList = new List<string>();
- strList.Add("" + no);
- strList.Add("" + value.Value[0]);
- strList.Add("" + value.Value[1]);
- 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);
- }
- }
- }
- /// <summary>
- /// 取消全部显示
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button16_Click(object sender, EventArgs e)
- {
- this.allShow = false;
- this.button11.Visible = true;
- this.button16.Visible = false;
- if (this.listView2.Items.Count > 0)
- {
- if (this.listView2.SelectedItems.Count > 0)
- {
- List<int> dataTableIndex = new List<int>();
- if (this.dataTables.Count == 0)
- return;
- for (int i = 0; i < this.dataTables.Count; i++)
- {
- foreach (ListViewItem item in this.listView2.SelectedItems)
- {
- if (this.dataTables[i].TableName.Equals(item.Tag))
- dataTableIndex.Add(i);
- }
- }
- this.dataGridView4.Rows.Clear();
- foreach (var item in dataTableIndex)
- {
- if (this.dataTables[item].Rows.Count > 0)
- {
- for (int r = 0; r < this.dataTables[item].Rows.Count; r++)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- dgvr.Tag = this.dataTables[item].TableName;
- foreach (DataGridViewColumn Column in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(Column.CellTemplate.Clone() as DataGridViewCell);
- }
- for (int c = 0; c < this.dataTables[item].Columns.Count; c++)
- {
- if (c == this.dataTables[item].Columns.Count - 1)
- dgvr.Cells[c].Value = Math.Round((double)Convert.ToDecimal(this.dataTables[item].Rows[r][c]), Convert.ToInt32(this.numericUpDown1.Value)).ToString() + "%";
- else
- dgvr.Cells[c].Value = this.dataTables[item].Rows[r][c].ToString();
- }
- this.dataGridView4.Rows.Add(dgvr);
- }
- }
- }
- }
- else
- {
- this.listView2.Items[0].Selected = true;
- if (this.dataTables.Count > 0
- && this.dataTables[this.dataTables.Count - 1].Rows.Count > 0)
- {
- this.dataGridView4.Rows.Clear();
- for (int r = 0; r < this.dataTables[this.dataTables.Count - 1].Rows.Count; r++)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- dgvr.Tag = this.dataTables[this.dataTables.Count - 1].TableName;
- foreach (DataGridViewColumn Column in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(Column.CellTemplate.Clone() as DataGridViewCell);
- }
- for (int c = 0; c < this.dataTables[this.dataTables.Count - 1].Columns.Count; c++)
- {
- if (c == this.dataTables[this.dataTables.Count - 1].Columns.Count - 1)
- dgvr.Cells[c].Value = Math.Round((double)Convert.ToDecimal(this.dataTables[this.dataTables.Count - 1].Rows[r][c]), Convert.ToInt32(this.numericUpDown1.Value)).ToString() + "%";
- else
- dgvr.Cells[c].Value = this.dataTables[this.dataTables.Count - 1].Rows[r][c].ToString();
- }
- this.dataGridView4.Rows.Add(dgvr);
- }
- }
- }
- }
- }
- /// <summary>
- /// 分析结果删除
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button12_Click(object sender, EventArgs e)
- {
- if (this.listView2.Items.Count > 0)
- {
- if (this.listView2.SelectedItems.Count > 0)
- {
- DialogResult dr = MessageBox.Show(PdnResources.GetString("Menu.Areyousuretodeletethisanalysisresult.text")+"?", PdnResources.GetString("Menu.hint.text"), MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
- if (dr == DialogResult.OK)
- {
- List<string> detaleName = new List<string>();
- int selectIndex = this.listView2.SelectedItems[0].Index;
- foreach (ListViewItem item in this.listView2.SelectedItems)
- {
- detaleName.Add(item.Tag.ToString());
- this.listView2.Items.Remove(item);
- }
- foreach (string tag in detaleName)
- {
- foreach (DataTable dataTable in this.dataTables)
- {
- if (dataTable.TableName.Equals(tag))
- {
- this.dataTables.Remove(dataTable);
- break;
- }
- }
- if (bitDic.ContainsKey(tag))
- bitDic.Remove(tag);
- foreach (ExportProjectModel model in this.tempDataModel)
- {
- if (model.tagName.Equals(tag))
- {
- this.tempDataModel.Remove(model);
- break;
- }
- }
- this.keyValuePairsAll.Remove(tag);
- this.graphicMethods.Remove(tag);
- this.matrixMethods.Remove(tag);
- }
- if (this.listView2.Items.Count > 0)
- {
- if (selectIndex == 0)
- this.listView2.Items[0].Selected = true;
- else
- this.listView2.Items[selectIndex - 1].Selected = true;
- RefreshDataGridView4();
- }
- else
- {
- this.dataGridView4.Rows.Clear();
- }
- }
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Pleaseselecttheanalysisresulttodelete.text")+"!");
- }
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Nodataintheanalysisresults.text")+"!");
- }
- }
- /// <summary>
- /// 刷新分析结果数据
- /// </summary>
- private void RefreshDataGridView4()
- {
- if (!this.allShow)
- {
- if (this.listView2.SelectedItems.Count > 0)
- {
- List<int> dataTableIndex = new List<int>();
- for (int i = 0; i < this.dataTables.Count; i++)
- {
- foreach (ListViewItem item in this.listView2.SelectedItems)
- {
- if (this.dataTables[i].TableName.Equals(item.Tag))
- dataTableIndex.Add(i);
- }
- }
- if (this.dataTables.Count == 0)
- return;
- this.dataGridView4.Rows.Clear();
- foreach (var item in dataTableIndex)
- {
- if (this.dataTables[item].Rows.Count > 0)
- {
- for (int r = 0; r < this.dataTables[item].Rows.Count; r++)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- dgvr.Tag = this.dataTables[item].TableName;
- foreach (DataGridViewColumn Column in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(Column.CellTemplate.Clone() as DataGridViewCell);
- }
- for (int c = 0; c < this.dataTables[item].Columns.Count; c++)
- {
- if (c != this.dataTables[item].Columns.Count - 1)
- dgvr.Cells[c].Value = this.dataTables[item].Rows[r][c].ToString();
- else
- dgvr.Cells[c].Value = Math.Round((double)Convert.ToDecimal(this.dataTables[item].Rows[r][c]), Convert.ToInt32(this.numericUpDown1.Value)).ToString() + "%";
- }
- this.dataGridView4.Rows.Add(dgvr);
- }
- }
- }
- }
- }
- else
- {
- this.dataGridView4.Rows.Clear();
- DataTable dataTable = new DataTable();
- for (int i = this.dataTables.Count - 1; i >= 0; i--)
- {
- dataTable = this.dataTables[i];
- for (int r = 0; r < dataTable.Rows.Count; r++)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- dgvr.Tag = dataTable.TableName;
- foreach (DataGridViewColumn Column in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(Column.CellTemplate.Clone() as DataGridViewCell);
- }
- for (int c = 0; c < dataTable.Columns.Count; c++)
- {
- if (c != dataTable.Columns.Count - 1)
- dgvr.Cells[c].Value = dataTable.Rows[r][c].ToString();
- else
- dgvr.Cells[c].Value = Math.Round((double)Convert.ToDecimal(dataTable.Rows[r][c]), Convert.ToInt32(this.numericUpDown1.Value)).ToString() + "%";
- }
- this.dataGridView4.Rows.Add(dgvr);
- }
- }
- }
- }
- /// <summary>
- /// 未选择分析结果
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void listView2_ItemSelectionChanged(object sender, ListViewItemSelectionChangedEventArgs e)
- {
- if (!this.allShow)
- {
- if (this.listView2.SelectedItems.Count == 0)
- {
- this.dataGridView4.Rows.Clear();
- this.dataGridView2.Rows.Clear();
- }
- }
- }
- /// <summary>
- /// 切换分析结果
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void listView2_SelectedIndexChanged(object sender, EventArgs e)
- {
- if (!this.allShow)
- {
- if (this.listView2.SelectedItems.Count > 0)
- {
- List<int> dataTableIndex = new List<int>();
- if (this.dataTables.Count == 0)
- return;
- for (int i = 0; i < this.dataTables.Count; i++)
- {
- foreach (ListViewItem item in this.listView2.SelectedItems)
- {
- if (this.dataTables[i].TableName.Equals(item.Tag))
- dataTableIndex.Add(i);
- }
- }
- this.dataGridView4.Rows.Clear();
- foreach (var item in dataTableIndex)
- {
- if (this.dataTables[item].Rows.Count > 0)
- {
- for (int r = 0; r < this.dataTables[item].Rows.Count; r++)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- dgvr.Tag = this.dataTables[item].TableName;
- foreach (DataGridViewColumn Column in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(Column.CellTemplate.Clone() as DataGridViewCell);
- }
- for (int c = 0; c < this.dataTables[item].Columns.Count; c++)
- {
- if (c == this.dataTables[item].Columns.Count - 1)
- dgvr.Cells[c].Value = Math.Round((double)Convert.ToDecimal(this.dataTables[item].Rows[r][c]), Convert.ToInt32(this.numericUpDown1.Value)).ToString() + "%";
- else
- dgvr.Cells[c].Value = this.dataTables[item].Rows[r][c].ToString();
- }
- this.dataGridView4.Rows.Add(dgvr);
- }
- }
- }
- }
- }
- RefreshStatistics();
- }
- /// <summary>
- /// 刷新结果数据
- /// </summary>
- private void RefreshStatistics()
- {
- if (this.listView2.SelectedItems.Count == 0 && !this.allShow)
- return;
- this.dataGridView2.Rows.Clear();
- //
- // 岩石定名
- //
- // 大类
- // 砾百分比
- double percentageGravel = 0;
- // 砂百分比
- double percentageSand = 0;
- // 粉砂百分比
- double percentageSilt = 0;
- // 粘土百分比
- double percentageClay = 0;
- // 小类
- // 巨砾百分比
- double percentageBoulders = 0;
- // 粗砾百分比
- double percentageCoarseGravel = 0;
- // 中砾百分比
- double percentageMediuGravel = 0;
- // 细砾百分比
- double percentageFineGravel = 0;
- // 巨砂百分比
- double percentageGiantSand = 0;
- // 粗砂百分比
- double percentageCoarseSand = 0;
- // 中砂百分比
- double percentageMediumSand = 0;
- // 细砂百分比
- double percentageFineSand = 0;
- // 极细砂百分比
- double percentageSuperfineSand = 0;
- // 粗粉砂百分比
- double percentageCoarseSilt = 0;
- // 细粉砂百分比
- double percentageFineSilt = 0;
- foreach (DataTable dataTable in dataTables)
- {
- foreach (ListViewItem listViewItem in this.listView2.SelectedItems)
- {
- if(dataTable.TableName.Equals(listViewItem.Tag))
- {
- for (int r = 0; r < dataTable.Rows.Count; r++)
- {
- if (dataTable.Rows[r][2].Equals(PdnResources.GetString("Menu.gravel.text")))
- {
- percentageGravel += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][2].Equals(PdnResources.GetString("Menu.sand.text")))
- {
- percentageSand += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][2].Equals(PdnResources.GetString("Menu.silt.text")))
- {
- percentageSilt += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][2].Equals(PdnResources.GetString("Menu.clay.text")))
- {
- percentageClay += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.boulder.text")))
- {
- percentageBoulders += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.boulwder.text")))
- {
- percentageCoarseGravel += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.Thegravel.text")))
- {
- percentageMediuGravel += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.Finegravel.text")))
- {
- percentageFineGravel += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.bigsand.text")))
- {
- percentageGiantSand += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.Coarsesand.text")))
- {
- percentageCoarseSand += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.Mediumsand.text")))
- {
- percentageMediumSand += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.Finesand.text")))
- {
- percentageFineSand += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.Veryfinesand.text")))
- {
- percentageSuperfineSand += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.Coarsesilt.text")))
- {
- percentageCoarseSilt += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- else if (dataTable.Rows[r][3].Equals(PdnResources.GetString("Menu.Fineowdersand.text")))
- {
- percentageFineSilt += Convert.ToDouble(dataTable.Rows[r][5]);
- }
- }
- }
- }
- }
- // 岩石定名(主)
- string rockNamingFirst = string.Empty;
- if(percentageGravel >= 50 || percentageSand >= 50 || percentageSilt >= 50 || percentageClay >= 50)
- {
- // 砾
- if (percentageGravel >= 50)
- {
- rockNamingFirst = PdnResources.GetString("Menu.conglomerate.text");
- // 其中小类大于等于50%
- if (percentageBoulders >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.Thegiantconglomerate.text");
- else if (percentageCoarseGravel >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.Coarseconglomerate.text");
- else if (percentageMediuGravel >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.Theconglomerate.text");
- else if (percentageFineGravel >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.Fineconglomerate.text");
- // 另有小类大于等于50%小于25%
- if (percentageBoulders >= 25 && percentageBoulders < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Bouldemass.text") + rockNamingFirst;
- else if (percentageCoarseGravel >= 25 && percentageCoarseGravel < 50)
- rockNamingFirst = PdnResources.GetString("Menu.cobbly.text") + rockNamingFirst;
- else if (percentageMediuGravel >= 25 && percentageMediuGravel < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Thegraveql.text") + rockNamingFirst;
- else if (percentageFineGravel >= 25 && percentageFineGravel < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Finegraveql.text") + rockNamingFirst;
- // 砂
- if (percentageSand >= 25 && percentageSand < 50)
- rockNamingFirst = PdnResources.GetString("Menu.sandyq.text") + rockNamingFirst;
- // 粉砂
- else if (percentageSilt >= 25 && percentageSilt < 50)
- rockNamingFirst = PdnResources.GetString("Menu.siltyq.text") + rockNamingFirst;
- // 粘土
- else if (percentageClay >= 25 && percentageClay < 50)
- rockNamingFirst = PdnResources.GetString("Menu.clayq.text") + rockNamingFirst;
- // 砂
- if (percentageSand >= 10 && percentageSand < 25)
- rockNamingFirst = PdnResources.GetString("Menu.sandqa.text") + rockNamingFirst;
- // 粉砂
- else if (percentageSilt >= 10 && percentageSilt < 25)
- rockNamingFirst = PdnResources.GetString("Menu.Containingsilty.text") + rockNamingFirst;
- // 粘土
- else if (percentageClay >= 10 && percentageClay < 25)
- rockNamingFirst = PdnResources.GetString("Menu.Containclay.text") + rockNamingFirst;
- }
- // 砂
- else if (percentageSand >= 50)
- {
- rockNamingFirst = PdnResources.GetString("Menu.sandstone.text");
- if (percentageGiantSand >= 50 || percentageCoarseSand >= 50 || percentageMediumSand >= 50
- || percentageFineSand >= 50 || percentageSuperfineSand >= 50)
- {
- // 其中小类大于等于50%
- if (percentageGiantSand >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.Thegiantsandstone.text");
- else if (percentageCoarseSand >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.grit.text");
- else if (percentageMediumSand >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.Sandstoneinthe.text");
- else if (percentageFineSand >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.Veryfinesandstone.text");
- else if (percentageSuperfineSand >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.Veryfinqqesandstone.text");
- // 另有小类大于等于25%小于50%
- if (percentageGiantSand >= 25 && percentageGiantSand < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Thegiantsand.text") + rockNamingFirst;
- else if (percentageCoarseSand >= 25 && percentageCoarseSand < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Coqarsesand.text") + rockNamingFirst;
- else if (percentageMediumSand >= 25 && percentageMediumSand < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Mediumsandmass.text") + rockNamingFirst;
- else if (percentageFineSand >= 25 && percentageFineSand < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Fineqsandy.text") + rockNamingFirst;
- else if (percentageSuperfineSand >= 25 && percentageSuperfineSand < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Fineqsandy.text") + rockNamingFirst;
- }
- // 各小类均低于50%
- else
- {
- if (percentageGiantSand >= 25 && percentageCoarseSand >= 25 && percentageMediumSand < 25 && percentageFineSand < 25 && percentageSuperfineSand < 25)
- {
- if (percentageGiantSand > percentageCoarseSand) rockNamingFirst = PdnResources.GetString("Menu.Coarsesandgiantsandstone.text");
- else if (percentageGiantSand < percentageCoarseSand) rockNamingFirst = PdnResources.GetString("Menu.Giantgritsandstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Coarsesandgiantsandstone.text");
- }
- else if (percentageGiantSand >= 25 && percentageMediumSand >= 25 && percentageCoarseSand < 25 && percentageFineSand < 25 && percentageSuperfineSand < 25)
- {
- if (percentageGiantSand > percentageMediumSand) rockNamingFirst = PdnResources.GetString("Menu.Middlesandgiantsandstone.text");
- else if (percentageGiantSand < percentageMediumSand) rockNamingFirst = PdnResources.GetString("Menu.Giantsandstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Middlesandgiantsandstone.text");
- }
- else if (percentageGiantSand >= 25 && percentageFineSand >= 25 && percentageCoarseSand < 25 && percentageMediumSand < 25 && percentageSuperfineSand < 25)
- {
- if (percentageGiantSand > percentageFineSand) rockNamingFirst = PdnResources.GetString("Menu.Finegiantsandstone.text");
- else if (percentageGiantSand < percentageFineSand) rockNamingFirst = PdnResources.GetString("Menu.Giantfinesandstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Finegiantsandstone.text");
- }
- else if (percentageGiantSand >= 25 && percentageSuperfineSand >= 25 && percentageCoarseSand < 25 && percentageMediumSand < 25 && percentageFineSand < 25)
- {
- if (percentageGiantSand > percentageSuperfineSand) rockNamingFirst = PdnResources.GetString("Menu.Extremelyfinegiansandstone.text");
- else if (percentageGiantSand < percentageSuperfineSand) rockNamingFirst = PdnResources.GetString("Menu.Megareniteveryfinesandstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Extremelyfinegiansandstone.text");
- }
- else if (percentageCoarseSand >= 25 && percentageMediumSand >= 25 && percentageGiantSand < 25 && percentageFineSand < 25 && percentageSuperfineSand < 25)
- {
- if (percentageCoarseSand > percentageMediumSand) rockNamingFirst = PdnResources.GetString("Menu.Mediumsandcoarsesandstone.text");
- else if (percentageCoarseSand < percentageMediumSand) rockNamingFirst = PdnResources.GetString("Menu.Sandstoneincoarsesand.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Mediumsandcoarsesandstone.text");
- }
- else if (percentageCoarseSand >= 25 && percentageFineSand >= 25 && percentageGiantSand < 25 && percentageMediumSand < 25 && percentageSuperfineSand < 25)
- {
- if (percentageCoarseSand > percentageFineSand) rockNamingFirst = PdnResources.GetString("Menu.Finesandandcoarsesandstone.text");
- else if (percentageCoarseSand < percentageFineSand) rockNamingFirst = PdnResources.GetString("Menu.Coarssandandfineandstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Finesandandcoarsesandstone.text");
- }
- else if (percentageCoarseSand >= 25 && percentageSuperfineSand >= 25 && percentageGiantSand < 25 && percentageMediumSand < 25 && percentageFineSand < 25)
- {
- if (percentageCoarseSand > percentageSuperfineSand) rockNamingFirst = PdnResources.GetString("Menu.Veryfinesandcoarsesandstone.text");
- else if (percentageCoarseSand < percentageSuperfineSand) rockNamingFirst = PdnResources.GetString("Menu.Coarsesandveryfinesandstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Veryfinesandcoarsesandstone.text");
- }
- else if (percentageMediumSand >= 25 && percentageFineSand >= 25 && percentageGiantSand < 25 && percentageCoarseSand < 25 && percentageSuperfineSand < 25)
- {
- if (percentageMediumSand > percentageFineSand) rockNamingFirst = PdnResources.GetString("Menu.Finesanmediumsandstone.text");
- else if (percentageMediumSand < percentageFineSand) rockNamingFirst = PdnResources.GetString("Menu.Mediumsandfinesandstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Finesanmediumsandstone.text");
- }
- else if (percentageMediumSand >= 25 && percentageSuperfineSand >= 25 && percentageGiantSand < 25 && percentageCoarseSand < 25 && percentageFineSand < 25)
- {
- if (percentageMediumSand > percentageSuperfineSand) rockNamingFirst = PdnResources.GetString("Menu.Mediumsandstoneofveryfinesand.text");
- else if (percentageMediumSand < percentageSuperfineSand) rockNamingFirst = PdnResources.GetString("Menu.Mediumsandveryfinesandstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Mediumsandstoneofveryfinesand.text");
- }
- else if (percentageFineSand >= 25 && percentageSuperfineSand >= 25 && percentageGiantSand < 25 && percentageCoarseSand < 25 && percentageMediumSand < 25)
- {
- if (percentageFineSand > percentageSuperfineSand) rockNamingFirst = PdnResources.GetString("Menu.Veryfinesandfinesandstone.text");
- else if (percentageFineSand < percentageSuperfineSand) rockNamingFirst = PdnResources.GetString("Menu.Finesandveryfinesandstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Veryfinesandfinesandstone.text");
- }
- else
- {
- rockNamingFirst = PdnResources.GetString("Menu.Unequalsandstone.text");
- }
- }
- // 砾
- if (percentageGravel >= 25 && percentageGravel < 50)
- rockNamingFirst = PdnResources.GetString("Menu.graveal.text") + rockNamingFirst;
- // 粉砂
- else if (percentageSilt >= 25 && percentageSilt < 50)
- rockNamingFirst = PdnResources.GetString("Menu.siltyq.text") + rockNamingFirst;
- // 粘土
- else if (percentageClay >= 25 && percentageClay < 50)
- rockNamingFirst = PdnResources.GetString("Menu.clayq.text") + rockNamingFirst;
- // 砾
- if (percentageGravel >= 10 && percentageGravel < 25)
- rockNamingFirst = PdnResources.GetString("Menu.conglomerati.text") + rockNamingFirst;
- // 粉砂
- else if (percentageSilt >= 10 && percentageSilt < 25)
- rockNamingFirst = PdnResources.GetString("Menu.Containingsilty.text") + rockNamingFirst;
- // 粘土
- else if (percentageClay >= 10 && percentageClay < 25)
- rockNamingFirst = PdnResources.GetString("Menu.Containclay.text") + rockNamingFirst;
- }
- // 粉砂
- else if (percentageSilt >= 50)
- {
- rockNamingFirst = PdnResources.GetString("Menu.siltstone.text");
- // 其中小类大于等于50%
- if (percentageCoarseSilt >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.Coarsesiltstone.text");
- else if (percentageFineSilt >= 50)
- rockNamingFirst = PdnResources.GetString("Menu.Finesiltstone.text");
- // 另有小类大于等于50%小于25%
- if (percentageCoarseSilt >= 25 && percentageCoarseSilt < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Thicksilty.text") + rockNamingFirst;
- else if (percentageFineSilt >= 25 && percentageFineSilt < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Finesilty.text") + rockNamingFirst;
- // 砾
- if (percentageGravel >= 25 && percentageGravel < 50)
- rockNamingFirst = PdnResources.GetString("Menu.graveal.text") + rockNamingFirst;
- // 砂
- else if (percentageSand >= 25 && percentageSand < 50)
- rockNamingFirst = PdnResources.GetString("Menu.sandyq.text") + rockNamingFirst;
- // 粘土
- else if (percentageClay >= 25 && percentageClay < 50)
- rockNamingFirst = PdnResources.GetString("Menu.clayq.text") + rockNamingFirst;
- // 砾
- if (percentageGravel >= 10 && percentageGravel < 25)
- rockNamingFirst = PdnResources.GetString("Menu.conglomerati.text") + rockNamingFirst;
- // 砂
- else if (percentageSand >= 10 && percentageSand < 25)
- rockNamingFirst = PdnResources.GetString("Menu.sandqa.text") + rockNamingFirst;
- // 粘土
- else if (percentageClay >= 10 && percentageClay < 25)
- rockNamingFirst = PdnResources.GetString("Menu.Containclay.text") + rockNamingFirst;
- }
- // 粘土
- else if (percentageClay >= 50)
- {
- rockNamingFirst = PdnResources.GetString("Menu.Clayrock.text");
- // 砾
- if (percentageGravel >= 25 && percentageGravel < 50)
- rockNamingFirst = PdnResources.GetString("Menu.graveal.text") + rockNamingFirst;
- // 砂
- else if (percentageSand >= 25 && percentageSand < 50)
- rockNamingFirst = PdnResources.GetString("Menu.sandyq.text") + rockNamingFirst;
- // 粉砂
- else if (percentageSilt >= 25 && percentageSilt < 50)
- rockNamingFirst = PdnResources.GetString("Menu.siltyq.text") + rockNamingFirst;
- // 砾
- if (percentageGravel >= 25 && percentageGravel < 50)
- rockNamingFirst = PdnResources.GetString("Menu.conglomerati.text") + rockNamingFirst;
- // 砂
- else if (percentageSand >= 25 && percentageSand < 50)
- rockNamingFirst = PdnResources.GetString("Menu.sandqa.text") + rockNamingFirst;
- // 粉砂
- else if (percentageSilt >= 25 && percentageSilt < 50)
- rockNamingFirst = PdnResources.GetString("Menu.Containingsilty.text") + rockNamingFirst;
- }
- }
- // 均低于50%
- else
- {
- if(percentageGravel >= 25 && percentageSand >= 25 && percentageSilt < 25 && percentageClay < 25)
- {
- if (percentageGravel > percentageSand) rockNamingFirst = PdnResources.GetString("Menu.glutenite.text");
- else if (percentageGravel < percentageSand) rockNamingFirst = PdnResources.GetString("Menu.Gravelsandstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.glutenite.text");
- }
- else if (percentageGravel >= 25 && percentageSilt >= 25 && percentageSand < 25 && percentageClay < 25)
- {
- if (percentageGravel > percentageSilt) rockNamingFirst = PdnResources.GetString("Menu.Powderglutenite.text");
- else if (percentageGravel < percentageSilt) rockNamingFirst = PdnResources.GetString("Menu.Gravelsiltston.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Powderglutenite.text");
- }
- else if(percentageGravel >= 25 && percentageClay >= 25 && percentageSand < 25 && percentageSilt < 25)
- {
- if (percentageGravel > percentageClay) rockNamingFirst = PdnResources.GetString("Menu.Clayconglomerate.text");
- else if (percentageGravel < percentageClay) rockNamingFirst = PdnResources.GetString("Menu.Boulderclayrock.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Clayconglomerate.text");
- }
- else if (percentageSand >= 25 && percentageSilt >= 25 && percentageGravel < 25 && percentageClay < 25)
- {
- if (percentageSand > percentageSilt) rockNamingFirst = PdnResources.GetString("Menu.Siltysandstone.text");
- else if (percentageSand < percentageSilt) rockNamingFirst = PdnResources.GetString("Menu.Sandsiltstone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Siltysandstone.text");
- }
- else if (percentageSand >= 25 && percentageClay >= 25 && percentageGravel < 25 && percentageSilt < 25)
- {
- if (percentageSand > percentageClay) rockNamingFirst = PdnResources.GetString("Menu.Clasand.text");
- else if (percentageSand < percentageClay) rockNamingFirst = PdnResources.GetString("Menu.Sandclayrock.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Clasand.text");
- }
- else if (percentageSilt >= 25 && percentageClay >= 25 && percentageGravel < 25 && percentageSand < 25)
- {
- if (percentageSilt > percentageClay) rockNamingFirst = PdnResources.GetString("Menu.Claysiltstone.text");
- else if (percentageSilt < percentageClay) rockNamingFirst = PdnResources.GetString("Menu.Siltyclaystone.text");
- else rockNamingFirst = PdnResources.GetString("Menu.Claysiltstone.text");
- }
- else
- {
- rockNamingFirst = PdnResources.GetString("Menu.Mixedclasticrock.text");
- }
- }
- // 图解法
- if (this.checkBox3.Checked)
- {
- //平均值
- double sumMz = 0;
- // 标准偏差
- double sumA = 0;
- // 偏度
- double sumSK1 = 0;
- // 峰度
- double sumKg = 0;
- // Φ5
- double sumF5 = 0;
- // Φ16
- double sumF16 = 0;
- // Φ25
- double sumF25 = 0;
- // Φ50
- double sumF50 = 0;
- // Φ75
- double sumF75 = 0;
- // Φ84
- double sumF84 = 0;
- // Φ95
- double sumF95 = 0;
- int count = 0;
- foreach (ListViewItem listViewItem in this.listView2.SelectedItems)
- {
- foreach (var item in this.graphicMethods)
- {
- if (item.Key.Equals(listViewItem.Tag))
- {
- foreach (DataGridViewRow dataGridViewRow in item.Value)
- {
- count++;
- sumMz +=Convert.ToDouble( dataGridViewRow.Cells[1].Value);
- sumA += Convert.ToDouble(dataGridViewRow.Cells[2].Value);
- sumSK1 += Convert.ToDouble(dataGridViewRow.Cells[3].Value);
- sumKg += Convert.ToDouble(dataGridViewRow.Cells[4].Value);
- sumF5 += Convert.ToDouble(dataGridViewRow.Cells[6].Value);
- sumF16 += Convert.ToDouble(dataGridViewRow.Cells[7].Value);
- sumF25 += Convert.ToDouble(dataGridViewRow.Cells[8].Value);
- sumF50 += Convert.ToDouble(dataGridViewRow.Cells[9].Value);
- sumF75 += Convert.ToDouble(dataGridViewRow.Cells[10].Value);
- sumF84 += Convert.ToDouble(dataGridViewRow.Cells[11].Value);
- sumF95 += Convert.ToDouble(dataGridViewRow.Cells[12].Value);
- }
- }
- }
- }
- DataGridViewRow dgvr = new DataGridViewRow();
- foreach (DataGridViewColumn c in this.dataGridView2.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = PdnResources.GetString("Menu.Graphicalmethod.text");
- dgvr.Cells[1].Value = Math.Round(sumMz / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[2].Value = Math.Round(sumA / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[3].Value = Math.Round(sumSK1 / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[4].Value = Math.Round(sumKg / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[5].Value = rockNamingFirst;
- dgvr.Cells[6].Value = Math.Round(sumF5 / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[7].Value = Math.Round(sumF16 / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[8].Value = Math.Round(sumF25 / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[9].Value = Math.Round(sumF50 / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[10].Value = Math.Round(sumF75 / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[11].Value = Math.Round(sumF84 / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[12].Value = Math.Round(sumF95 / count, Convert.ToInt32(this.numericUpDown1.Value));
- this.dataGridView2.Rows.Add(dgvr);
- }
- // 矩阵法
- if (this.checkBox4.Checked)
- {
- //平均值
- double sumMz = 0;
- // 标准偏差
- double sumA = 0;
- // 偏度
- double sumSK1 = 0;
- // 峰度
- double sumKg = 0;
- int count = 0;
- foreach (ListViewItem listViewItem in this.listView2.SelectedItems)
- {
- foreach (var item in this.matrixMethods)
- {
- if (item.Key.Equals(listViewItem.Tag))
- {
- foreach (DataGridViewRow dataGridViewRow in item.Value)
- {
- count++;
- sumMz += Convert.ToDouble(dataGridViewRow.Cells[1].Value);
- sumA += Convert.ToDouble(dataGridViewRow.Cells[2].Value);
- sumSK1 += Convert.ToDouble(dataGridViewRow.Cells[3].Value);
- sumKg += Convert.ToDouble(dataGridViewRow.Cells[4].Value);
- }
- }
- }
- }
- DataGridViewRow dgvr = new DataGridViewRow();
- foreach (DataGridViewColumn c in this.dataGridView2.Columns)
- {
- dgvr.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell);
- }
- dgvr.Cells[0].Value = PdnResources.GetString("Menu.Matrixmethod.text");
- dgvr.Cells[1].Value = Math.Round(sumMz / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[2].Value = Math.Round(sumA / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[3].Value = Math.Round(sumSK1 / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[4].Value = Math.Round(sumKg / count, Convert.ToInt32(this.numericUpDown1.Value));
- dgvr.Cells[5].Value = rockNamingFirst;
- dgvr.Cells[6].Value = "-";
- dgvr.Cells[7].Value = "-";
- dgvr.Cells[8].Value = "-";
- dgvr.Cells[9].Value = "-";
- dgvr.Cells[10].Value = "-";
- dgvr.Cells[11].Value = "-";
- dgvr.Cells[12].Value = "-";
- this.dataGridView2.Rows.Add(dgvr);
- }
- }
- /// <summary>
- /// 全部显示
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button11_Click(object sender, EventArgs e)
- {
- if (this.listView2.Items.Count > 0)
- {
- this.button11.Visible = false;
- this.button16.Visible = true;
- this.button16.Focus();
- this.allShow = true;
- AllShow();
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.nodata.text")+"!");
- }
- }
- private void AllShow()
- {
- this.dataGridView4.Rows.Clear();
- DataTable dataTable = new DataTable();
- for (int i = this.dataTables.Count - 1; i >= 0; i--)
- {
- dataTable = this.dataTables[i];
- for (int r = 0; r < dataTable.Rows.Count; r++)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- dgvr.Tag = dataTable.TableName;
- foreach (DataGridViewColumn Column in this.dataGridView4.Columns)
- {
- dgvr.Cells.Add(Column.CellTemplate.Clone() as DataGridViewCell);
- }
- for (int c = 0; c < dataTable.Columns.Count; c++)
- {
- if (c == dataTable.Columns.Count - 1)
- dgvr.Cells[c].Value = Math.Round(Convert.ToDouble( dataTable.Rows[r][c]), Convert.ToInt32(this.numericUpDown1.Value)).ToString() + "%";
- else
- dgvr.Cells[c].Value = dataTable.Rows[r][c].ToString();
- }
- this.dataGridView4.Rows.Add(dgvr);
- }
- }
- }
- /// <summary>
- /// 导出结果
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button14_Click(object sender, EventArgs e)
- {
- if (this.listView2.Items.Count > 0)
- {
- System.Data.DataSet ds = new DataSet();
- DataTable table1 = new DataTable();
- table1.TableName = PdnResources.GetString("Menu.breakdown.text");
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- table1.Columns.Add(c.HeaderText);
- }
- for (int r = 0; r < this.dataGridView4.Rows.Count; r++)
- {
- DataRow dataRow = table1.NewRow();
- if (r == 0)
- {
- for (int c = 0; c < this.dataGridView4.Rows[r].Cells.Count; c++)
- {
- dataRow[this.dataGridView4.Columns[c].HeaderText] = this.dataGridView4.Columns[c].HeaderText;
- }
- table1.Rows.Add(dataRow);
- }
- dataRow = table1.NewRow();
- for (int c = 0; c < this.dataGridView4.Rows[r].Cells.Count; c++)
- {
- dataRow[this.dataGridView4.Columns[c].HeaderText] = this.dataGridView4.Rows[r].Cells[c].Value;
- }
- table1.Rows.Add(dataRow);
- }
- DataTable table2 = new DataTable();
- table2.TableName = PdnResources.GetString("Menu.statisaatics.text");
- foreach (DataGridViewColumn c in this.dataGridView2.Columns)
- {
- table2.Columns.Add(c.HeaderText);
- }
- for (int r = 0; r < this.dataGridView2.Rows.Count; r++)
- {
- DataRow dataRow = table2.NewRow();
- if (r == 0)
- {
- for (int c = 0; c < this.dataGridView2.Rows[r].Cells.Count; c++)
- {
- dataRow[this.dataGridView2.Columns[c].HeaderText] = this.dataGridView2.Columns[c].HeaderText;
- }
- table2.Rows.Add(dataRow);
- }
- dataRow = table2.NewRow();
- for (int c = 0; c < this.dataGridView2.Rows[r].Cells.Count; c++)
- {
- dataRow[this.dataGridView2.Columns[c].HeaderText] = this.dataGridView2.Rows[r].Cells[c].Value;
- }
- table2.Rows.Add(dataRow);
- }
- if (table1.Rows.Count > 0) ds.Tables.Add(table1);
- if (table2.Rows.Count > 0) ds.Tables.Add(table2);
- if (ds.Tables.Count > 0)
- DataToExcle(ds);
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Noanalysisresults.text")+"!");
- }
- }
- /// <summary>
- /// 导出多 Sheet 报表
- /// </summary>
- /// <param name="ds">要导出的数据</param>
- public void DataToExcle(System.Data.DataSet ds)
- {
- try
- {
- if (ds.Tables == null || ds.Tables.Count == 0)
- {
- MessageBox.Show(PdnResources.GetString("Menu.Nonedata.Text")+"!");
- return;
- }
- SaveFileDialog saveFileDialog = new SaveFileDialog();
- saveFileDialog.DefaultExt = "xlsx";
- saveFileDialog.Title = PdnResources.GetString("Menu.ExportdatatoEXECLtable.Text");
- saveFileDialog.FileName = PdnResources.GetString("Menu.Rockgraincharacteristics.Text") + DateTime.Now.ToString("yyyyMMddhhmmss");
- saveFileDialog.Filter = "microsoft office execl files (*.xlsx)|*.xlsx";
- saveFileDialog.RestoreDirectory = true;
- if (saveFileDialog.ShowDialog() == DialogResult.OK)
- {
- List<System.Data.DataTable> list = new List<System.Data.DataTable>();
- foreach (System.Data.DataTable itemTable in ds.Tables)
- list.Add(itemTable);
- this.appWorkspace.ExportDataToExcelWithProgress(list, saveFileDialog.FileName, true, false, true);
- }
- }
- catch (Exception e)
- {
- throw e;
- }
- }
- /// <summary>
- /// 生成报告
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button13_Click(object sender, EventArgs e)
- {
- if (this.checkBox2.Checked)
- {
- AnalyzeSettingDialog recombinationRateSetDialog = new AnalyzeSettingDialog(this, "Template.Manager.item3.Characteristics");
- if (recombinationRateSetDialog.hasModule)
- {
- recombinationRateSetDialog.StartPosition = FormStartPosition.CenterScreen;
- recombinationRateSetDialog.ShowDialog();
- }
- else
- {
- recombinationRateSetDialog = null;
- }
- }
- 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>>();
- for (int i = 0; i < this.dataGridView4.Rows.Count; i++)
- {
- List<string> content1 = new List<string>();
- if (i == 0)
- {
- content1.Add(this.dataGridView4.Columns[0].HeaderText);
- content1.Add(this.dataGridView4.Columns[1].HeaderText);
- content1.Add(this.dataGridView4.Columns[2].HeaderText);
- content1.Add(this.dataGridView4.Columns[3].HeaderText);
- content1.Add(this.dataGridView4.Columns[4].HeaderText);
- content1.Add(this.dataGridView4.Columns[5].HeaderText);
- analysisContent.Add(content1);
- }
- content1 = new List<string>();
- content1.Add(this.dataGridView4.Rows[i].Cells[0].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[1].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[2].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[3].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[4].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[5].Value.ToString());
- analysisContent.Add(content1);
- }
- List<string> content2 = new List<string>();
- analysisContent.Add(content2);
- for (int i = 0; i < this.dataGridView2.Rows.Count; i++)
- {
- List<string> content1 = new List<string>();
- if (i == 0)
- {
- content1.Add(this.dataGridView2.Columns[0].HeaderText);
- content1.Add(this.dataGridView2.Columns[1].HeaderText);
- content1.Add(this.dataGridView2.Columns[2].HeaderText);
- content1.Add(this.dataGridView2.Columns[3].HeaderText);
- content1.Add(this.dataGridView2.Columns[4].HeaderText);
- content1.Add(this.dataGridView2.Columns[5].HeaderText);
- content1.Add(this.dataGridView2.Columns[6].HeaderText);
- content1.Add(this.dataGridView2.Columns[7].HeaderText);
- content1.Add(this.dataGridView2.Columns[8].HeaderText);
- content1.Add(this.dataGridView2.Columns[9].HeaderText);
- content1.Add(this.dataGridView2.Columns[10].HeaderText);
- content1.Add(this.dataGridView2.Columns[11].HeaderText);
- content1.Add(this.dataGridView2.Columns[12].HeaderText);
- analysisContent.Add(content1);
- }
- content1 = new List<string>();
- content1.Add(this.dataGridView2.Rows[i].Cells[0].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[1].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[2].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[3].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[4].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[5].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[6].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[7].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[8].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[9].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[10].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[11].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[12].Value.ToString());
- analysisContent.Add(content1);
- }
- bitList = new List<Bitmap>();
- if (this.allShow)
- {
- 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.Tag.ToString()))
- {
- bitList.Add(bitDic[item.Tag.ToString()][0]);
- bitList.Add(bitDic[item.Tag.ToString()][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 button1_Click(object sender, EventArgs e)
- {
- AnalyzeSettingDialog recombinationRateSetDialog = new AnalyzeSettingDialog(this, "Template.Manager.item3.Characteristics");
- if (recombinationRateSetDialog.hasModule)
- {
- recombinationRateSetDialog.StartPosition = FormStartPosition.CenterScreen;
- recombinationRateSetDialog.ShowDialog();
- }
- else
- {
- recombinationRateSetDialog = null;
- }
- }
- /// <summary>
- /// 导出项目
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button4_Click(object sender, EventArgs e)
- {
- try
- {
- if (this.analyzeSettingModel == null)
- {
- MessageBox.Show(PdnResources.GetString("Menu.Settheexporteitemfirst.Text"));
- return;
- }
- //获取项目工程内的文件夹路径
- ProjectEngineering.NodeItem item = this.appWorkspace.GetInsertProjectPath(2, "Menu.DedicatedAnalysis.PetroleumGeology.PetroleumGeologySon.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>>();
- for (int i = 0; i < this.dataGridView4.Rows.Count; i++)
- {
- List<string> content1 = new List<string>();
- if (i == 0)
- {
- content1.Add(this.dataGridView4.Columns[0].HeaderText);
- content1.Add(this.dataGridView4.Columns[1].HeaderText);
- content1.Add(this.dataGridView4.Columns[2].HeaderText);
- content1.Add(this.dataGridView4.Columns[3].HeaderText);
- content1.Add(this.dataGridView4.Columns[4].HeaderText);
- content1.Add(this.dataGridView4.Columns[5].HeaderText);
- analysisContent.Add(content1);
- }
- content1 = new List<string>();
- content1.Add(this.dataGridView4.Rows[i].Cells[0].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[1].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[2].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[3].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[4].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[5].Value.ToString());
- analysisContent.Add(content1);
- }
- List<string> content2 = new List<string>();
- analysisContent.Add(content2);
- for (int i = 0; i < this.dataGridView2.Rows.Count; i++)
- {
- List<string> content1 = new List<string>();
- if (i == 0)
- {
- content1.Add(this.dataGridView2.Columns[0].HeaderText);
- content1.Add(this.dataGridView2.Columns[1].HeaderText);
- content1.Add(this.dataGridView2.Columns[2].HeaderText);
- content1.Add(this.dataGridView2.Columns[3].HeaderText);
- content1.Add(this.dataGridView2.Columns[4].HeaderText);
- content1.Add(this.dataGridView2.Columns[5].HeaderText);
- content1.Add(this.dataGridView2.Columns[6].HeaderText);
- content1.Add(this.dataGridView2.Columns[7].HeaderText);
- content1.Add(this.dataGridView2.Columns[8].HeaderText);
- content1.Add(this.dataGridView2.Columns[9].HeaderText);
- content1.Add(this.dataGridView2.Columns[10].HeaderText);
- content1.Add(this.dataGridView2.Columns[11].HeaderText);
- content1.Add(this.dataGridView2.Columns[12].HeaderText);
- analysisContent.Add(content1);
- }
- content1 = new List<string>();
- content1.Add(this.dataGridView2.Rows[i].Cells[0].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[1].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[2].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[3].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[4].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[5].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[6].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[7].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[8].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[9].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[10].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[11].Value.ToString());
- content1.Add(this.dataGridView2.Rows[i].Cells[12].Value.ToString());
- analysisContent.Add(content1);
- }
- bitList = new List<Bitmap>();
- if (this.allShow)
- {
- 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 itemL2 in this.listView2.SelectedItems)
- {
- if (bitDic.ContainsKey(itemL2.Tag.ToString()))
- {
- bitList.Add(bitDic[itemL2.Tag.ToString()][0]);
- bitList.Add(bitDic[itemL2.Tag.ToString()][1]);
- }
- }
- }
- }
- //中间数据
- if (!this.allShow)
- {
- 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.Tag))
- {
- 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)
- {
- }
- }
- /// <summary>
- /// 不可点击空白区域
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void listView1_MouseUp(object sender, MouseEventArgs e)
- {
- if (e.Button == MouseButtons.Left)
- {
- if (listView1.SelectedItems.Count > 0)
- {
- }
- else if (listView1.SelectedItems.Count <= 0)//点击空白区
- {
- if (this.listView1.FocusedItem != null)
- {
- ListViewItem item = this.listView1.GetItemAt(e.X, e.Y);
- if (item == null)
- {
- this.listView1.FocusedItem.Selected = true;
- }
- }
- }
- }
- }
- #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, checkBox2.Checked ? "0" : "1", (int)Base.Dtryt.Boolean);//报告设置
- saveParamValue(ParamKey_Correct, checkBox1.Checked ? "0" : "1", (int)Base.Dtryt.Boolean);//筛析矫正
- saveParamValue(ParamKey_Graphic, checkBox3.Checked ? "0" : "1", (int)Base.Dtryt.Boolean);//图解法
- saveParamValue(ParamKey_Matrix, checkBox4.Checked ? "0" : "1", (int)Base.Dtryt.Boolean);//矩阵法
- saveParamValue(ParamKey_Number, checkBox5.Checked ? "0" : "1", (int)Base.Dtryt.Boolean);//显示颗粒编号
- saveParamValue(ParamKey_NumberFontSize, numericUpDown2.Value.ToString(), (int)Base.Dtryt.Decimal);//编号字体大小
- saveParamValue(ParamKey_NumberColour, panel1.BackColor.ToArgb().ToString(), (int)Base.Dtryt.Color);//编号颜色
- saveParamValue(ParamKey_Diameter, checkBox6.Checked ? "0" : "1", (int)Base.Dtryt.Boolean);//显示颗粒直径
- saveParamValue(ParamKey_DiameterFontSize, numericUpDown3.Value.ToString(), (int)Base.Dtryt.Decimal);//直径字体大小
- saveParamValue(ParamKey_DiameterColour, panel2.BackColor.ToArgb().ToString(), (int)Base.Dtryt.Color);//直径颜色
- saveParamValue(ParamKey_DecimalPlace, numericUpDown1.Value.ToString(), (int)Base.Dtryt.Decimal);//保留小数位数
- }
- /// <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:
- checkBox2.Checked = (Boolean)this.eachData[GetImgKey()].ListParam[i].value;
- break;
- case ParamKey_Correct:
- checkBox1.Checked = (Boolean)this.eachData[GetImgKey()].ListParam[i].value;
- break;
- case ParamKey_Graphic:
- checkBox3.Checked = (Boolean)this.eachData[GetImgKey()].ListParam[i].value;
- break;
- case ParamKey_Matrix:
- checkBox4.Checked = (Boolean)this.eachData[GetImgKey()].ListParam[i].value;
- break;
- case ParamKey_Number:
- checkBox5.Checked = (Boolean)this.eachData[GetImgKey()].ListParam[i].value;
- break;
- case ParamKey_NumberFontSize:
- numericUpDown2.Value = decimal.Parse(this.eachData[GetImgKey()].ListParam[i].param_value);
- break;
- case ParamKey_NumberColour:
- panel1.BackColor = Color.FromArgb((int)this.eachData[GetImgKey()].ListParam[i].value);
- break;
- case ParamKey_Diameter:
- checkBox6.Checked = (Boolean)this.eachData[GetImgKey()].ListParam[i].value;
- break;
- case ParamKey_DiameterFontSize:
- numericUpDown3.Value = decimal.Parse(this.eachData[GetImgKey()].ListParam[i].param_value);
- break;
- case ParamKey_DiameterColour:
- panel2.BackColor = Color.FromArgb((int)this.eachData[GetImgKey()].ListParam[i].value);
- break;
- case ParamKey_DecimalPlace:
- numericUpDown1.Value = decimal.Parse(this.eachData[GetImgKey()].ListParam[i].param_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 button5_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 void button3_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();
- }
- this.listView1.EnsureVisible(current);
- this.listView1.Items[current].Focused = true;
- this.listView1.Items[current].Selected = true;
- }
- 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":
- checkBox1.Checked = Convert.ToBoolean(value);
- break;
- case "parameter2":
- checkBox3.Checked = Convert.ToBoolean(value);
- break;
- case "parameter3":
- checkBox4.Checked = Convert.ToBoolean(value);
- break;
- case "parameter4":
- checkBox5.Checked = Convert.ToBoolean(value);
- break;
- case "parameter5":
- numericUpDown2.Value = Convert.ToDecimal(value);
- break;
- case "parameter6":
- panel1.BackColor = Color.FromArgb((int)value);
- break;
- case "parameter7":
- checkBox6.Checked = Convert.ToBoolean(value);
- break;
- case "parameter8":
- numericUpDown3.Value = Convert.ToDecimal(value);
- break;
- case "parameter9":
- panel2.BackColor = Color.FromArgb((int)value);
- break;
- case "OpenWhileExportReport":
- checkBox2.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.button5.PerformClick();
- this.button3.PerformClick();
- if (isExportResults)//导出结果
- this.button14.PerformClick();
- if (isExportReports)//生成报告
- this.button13.PerformClick();
- if (isExportProjects)//导出项目
- this.button4.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 = checkBox1.Checked;
- break;
- case "parameter2":
- value = checkBox3.Checked;
- break;
- case "parameter3":
- value = checkBox4.Checked;
- break;
- case "parameter4":
- value = checkBox5.Checked;
- break;
- case "parameter5":
- value = numericUpDown2.Value;
- break;
- case "parameter6":
- value = panel1.BackColor.ToArgb();
- break;
- case "parameter7":
- value = checkBox6.Checked;
- break;
- case "parameter8":
- value = numericUpDown3.Value;
- break;
- case "parameter9":
- value = panel2.BackColor.ToArgb();
- break;
- case "OpenWhileExportReport":
- value = checkBox2.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
- }
- }
|