| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304 |
- namespace Core.StlMes.Client.Lims.Data.PipeAndOutdec.数据管理.外委实验管理
- {
- partial class FrmOutdecLabEngDataParm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STEP");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LOAD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRESSURE_MEDIUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INTERNAL_PRESSURE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DOGLEG_DEGREE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HOLD_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TEST_RESULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN_DELETE");
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton5 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton6 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton7 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton8 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton9 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton10 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton11 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton12 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton13 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton14 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton15 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton16 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton17 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton18 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton19 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton20 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton21 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton22 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STEP");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PIN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BOX");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COMPOUND_TYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COMPOUND_WEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAKEUP_TORQUE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOTAL_TORQUE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BREAKOUT_TORQUE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OBSERVED_THREAD_RESULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TEST_CURVE1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TEST_CURVE2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHOTO1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHOTO2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN_DELETE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHOULDER_TORQUE");
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton23 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton24 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.panel1 = new System.Windows.Forms.Panel();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.ultraPanel5 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
- this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraTEST_RESULTS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTEST_ITEM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraFILE_PATH7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraFILE_PATH6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraFILE_PATH5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraFILE_PATH4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraFILE_PATH3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraFILE_PATH2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraFILE_PATH1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraSTEEL_GRADE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraSAMPLE_SIZE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTECHNICAL_STANDARD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraSAMPLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraSAMPLE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
- this.lsTEST_ITEM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.lsFILE_PATH3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraButton2 = new Infragistics.Win.Misc.UltraButton();
- this.lsFILE_PATH2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lsFILE_PATH1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lsTEST_RESULTS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lsNOTE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lsSTEEL_GRADE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lsSAMPLE_SIZE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lsTECHNICAL_STANDARD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lsSAMPLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lsSAMPLE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lsCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel78 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel86 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel87 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel88 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel90 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel91 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel92 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel93 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel94 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel95 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel96 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel48 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.panel2 = new System.Windows.Forms.Panel();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.ultraPanel6 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraPanel7 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraButton3 = new Infragistics.Win.Misc.UltraButton();
- this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
- this.kkFILE_PATH1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
- this.kkCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.kkCONNECTION = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.kkSTEEL_GRADE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.kkSAMPLE_SIZE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.kkTECHNICAL_STANDARD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.kkSAMPLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.kkSAMPLE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel66 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel68 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel83 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel97 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel98 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel99 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel100 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel101 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
- this.kkTEST_RESULTS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- this.ultraTabPageControl1.SuspendLayout();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- this.ultraPanel5.ClientArea.SuspendLayout();
- this.ultraPanel5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- this.ultraPanel4.ClientArea.SuspendLayout();
- this.ultraPanel4.SuspendLayout();
- this.ultraPanel1.ClientArea.SuspendLayout();
- this.ultraPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTEST_RESULTS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTEST_ITEM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSTEEL_GRADE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_SIZE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTECHNICAL_STANDARD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCHECK_NO)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- this.ultraPanel2.ClientArea.SuspendLayout();
- this.ultraPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.lsTEST_ITEM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsTEST_RESULTS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsNOTE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsSTEEL_GRADE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_SIZE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsTECHNICAL_STANDARD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsCHECK_NO)).BeginInit();
- this.ultraTabPageControl3.SuspendLayout();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- this.ultraPanel6.ClientArea.SuspendLayout();
- this.ultraPanel6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- this.ultraPanel7.ClientArea.SuspendLayout();
- this.ultraPanel7.SuspendLayout();
- this.ultraPanel3.ClientArea.SuspendLayout();
- this.ultraPanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.kkFILE_PATH1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkCHECK_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkCONNECTION)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkSTEEL_GRADE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_SIZE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkTECHNICAL_STANDARD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.kkTEST_RESULTS)).BeginInit();
- this.SuspendLayout();
- //
- // ultraTextEditor1
- //
- editorButton1.Key = "select";
- editorButton1.Text = "查询";
- this.ultraTextEditor1.ButtonsLeft.Add(editorButton1);
- editorButton2.Key = "update";
- editorButton2.Text = "上传";
- this.ultraTextEditor1.ButtonsRight.Add(editorButton2);
- this.ultraTextEditor1.Location = new System.Drawing.Point(512, 20);
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Size = new System.Drawing.Size(100, 21);
- this.ultraTextEditor1.TabIndex = 87;
- this.ultraTextEditor1.Visible = false;
- this.ultraTextEditor1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor1_EditorButtonClick);
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.panel1);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(780, 724);
- //
- // panel1
- //
- this.panel1.Controls.Add(this.splitContainer1);
- this.panel1.Controls.Add(this.ultraPanel1);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(780, 724);
- this.panel1.TabIndex = 2;
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(0, 412);
- this.splitContainer1.Name = "splitContainer1";
- this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.ultraPanel5);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.ultraPanel4);
- this.splitContainer1.Size = new System.Drawing.Size(780, 312);
- this.splitContainer1.SplitterDistance = 136;
- this.splitContainer1.TabIndex = 4;
- //
- // ultraPanel5
- //
- //
- // ultraPanel5.ClientArea
- //
- this.ultraPanel5.ClientArea.Controls.Add(this.ultraGrid1);
- this.ultraPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel5.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel5.Name = "ultraPanel5";
- this.ultraPanel5.Size = new System.Drawing.Size(780, 136);
- this.ultraPanel5.TabIndex = 3;
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "Table1";
- this.ultraGrid1.DataSource = this.dataSet1;
- appearance1.BackColor = System.Drawing.SystemColors.Window;
- appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance1;
- ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 0);
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(91, 0);
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(130, 0);
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
- ultraGridColumn8.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8});
- ultraGridBand1.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnBottom;
- ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
- ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
- ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
- ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
- ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance2.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance2;
- appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance4;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance3.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance3.BackColor2 = System.Drawing.SystemColors.Control;
- appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance3;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance7.BackColor = System.Drawing.SystemColors.Window;
- appearance7.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance7;
- appearance10.BackColor = System.Drawing.SystemColors.Highlight;
- appearance10.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance10;
- this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnBottom;
- this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance12.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance12;
- appearance8.BorderColor = System.Drawing.Color.Silver;
- appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance8;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
- appearance6.BackColor = System.Drawing.SystemColors.Control;
- appearance6.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance6.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance6.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance6;
- appearance5.TextHAlignAsString = "Left";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance5;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance11.BackColor = System.Drawing.SystemColors.Window;
- appearance11.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance11;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance9.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance9;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
- this.ultraGrid1.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(780, 136);
- this.ultraGrid1.TabIndex = 8;
- this.ultraGrid1.Text = "ultraGrid1";
- this.ultraGrid1.AfterRowInsert += new Infragistics.Win.UltraWinGrid.RowEventHandler(this.ultraGrid1_AfterRowInsert);
- this.ultraGrid1.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid1_ClickCellButton);
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1,
- this.dataTable2});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn4,
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn21});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "步骤";
- this.dataColumn1.ColumnName = "STEP";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "载荷";
- this.dataColumn2.ColumnName = "LOAD";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "压力介质";
- this.dataColumn3.ColumnName = "PRESSURE_MEDIUM";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "内压力";
- this.dataColumn4.ColumnName = "INTERNAL_PRESSURE";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "狗腿度";
- this.dataColumn5.ColumnName = "DOGLEG_DEGREE";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "保持时间";
- this.dataColumn6.ColumnName = "HOLD_TIME";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "结果评定";
- this.dataColumn7.ColumnName = "TEST_RESULT";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "删除";
- this.dataColumn21.ColumnName = "BTN_DELETE";
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn22,
- this.dataColumn23});
- this.dataTable2.TableName = "Table2";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "序号";
- this.dataColumn8.ColumnName = "STEP";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "外螺纹端";
- this.dataColumn9.ColumnName = "PIN";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "内螺纹端";
- this.dataColumn10.ColumnName = "BOX";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "螺纹脂类型";
- this.dataColumn11.ColumnName = "COMPOUND_TYPE";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "螺纹脂用量";
- this.dataColumn12.ColumnName = "COMPOUND_WEIGHT";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "上扣要求";
- this.dataColumn13.ColumnName = "MAKEUP_TORQUE";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "上扣扭矩";
- this.dataColumn14.ColumnName = "TOTAL_TORQUE";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "卸扣扭矩";
- this.dataColumn15.ColumnName = "BREAKOUT_TORQUE";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "螺纹检查";
- this.dataColumn16.ColumnName = "OBSERVED_THREAD_RESULT";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "试验曲线1";
- this.dataColumn17.ColumnName = "TEST_CURVE1";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "试验曲线2";
- this.dataColumn18.ColumnName = "TEST_CURVE2";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "照片1";
- this.dataColumn19.ColumnName = "PHOTO1";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "照片2";
- this.dataColumn20.ColumnName = "PHOTO2";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "删除";
- this.dataColumn22.ColumnName = "BTN_DELETE";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "台肩扭矩";
- this.dataColumn23.ColumnName = "SHOULDER_TORQUE";
- //
- // ultraPanel4
- //
- //
- // ultraPanel4.ClientArea
- //
- this.ultraPanel4.ClientArea.Controls.Add(this.ultraButton1);
- this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel4.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel4.Name = "ultraPanel4";
- this.ultraPanel4.Size = new System.Drawing.Size(780, 172);
- this.ultraPanel4.TabIndex = 2;
- //
- // ultraButton1
- //
- this.ultraButton1.Location = new System.Drawing.Point(260, 6);
- this.ultraButton1.Name = "ultraButton1";
- this.ultraButton1.Size = new System.Drawing.Size(96, 28);
- this.ultraButton1.TabIndex = 86;
- this.ultraButton1.Text = "保 存";
- this.ultraButton1.Click += new System.EventHandler(this.ultraButton1_Click);
- //
- // ultraPanel1
- //
- this.ultraPanel1.AutoScroll = true;
- //
- // ultraPanel1.ClientArea
- //
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraTEST_RESULTS);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel19);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraTEST_ITEM);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH7);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH6);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH5);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel15);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel14);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel13);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel12);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH4);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH3);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH2);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH1);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel11);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel10);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel9);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel8);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraSTEEL_GRADE_NO);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraSAMPLE_SIZE);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraTECHNICAL_STANDARD);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraSAMPLE_NAME);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraSAMPLE_NO);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraCHECK_NO);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel7);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel6);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel5);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel4);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel3);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel2);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel1);
- this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel1.Name = "ultraPanel1";
- this.ultraPanel1.Size = new System.Drawing.Size(780, 412);
- this.ultraPanel1.TabIndex = 1;
- //
- // ultraTEST_RESULTS
- //
- this.ultraTEST_RESULTS.AutoSize = false;
- this.ultraTEST_RESULTS.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraTEST_RESULTS.Location = new System.Drawing.Point(356, 378);
- this.ultraTEST_RESULTS.Name = "ultraTEST_RESULTS";
- this.ultraTEST_RESULTS.Size = new System.Drawing.Size(333, 28);
- this.ultraTEST_RESULTS.TabIndex = 47;
- //
- // ultraLabel19
- //
- appearance60.TextHAlignAsString = "Center";
- appearance60.TextVAlignAsString = "Middle";
- this.ultraLabel19.Appearance = appearance60;
- this.ultraLabel19.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel19.Location = new System.Drawing.Point(23, 378);
- this.ultraLabel19.Name = "ultraLabel19";
- this.ultraLabel19.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel19.TabIndex = 46;
- this.ultraLabel19.Text = "结果评定";
- //
- // ultraTEST_ITEM
- //
- this.ultraTEST_ITEM.AutoSize = false;
- this.ultraTEST_ITEM.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraTEST_ITEM.Location = new System.Drawing.Point(356, 351);
- this.ultraTEST_ITEM.Name = "ultraTEST_ITEM";
- this.ultraTEST_ITEM.Size = new System.Drawing.Size(333, 28);
- this.ultraTEST_ITEM.TabIndex = 45;
- //
- // ultraFILE_PATH7
- //
- this.ultraFILE_PATH7.AutoSize = false;
- this.ultraFILE_PATH7.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton3.Key = "select";
- editorButton3.Text = "查询";
- this.ultraFILE_PATH7.ButtonsLeft.Add(editorButton3);
- editorButton4.Key = "update";
- editorButton4.Text = "上传";
- this.ultraFILE_PATH7.ButtonsRight.Add(editorButton4);
- this.ultraFILE_PATH7.Location = new System.Drawing.Point(356, 322);
- this.ultraFILE_PATH7.Name = "ultraFILE_PATH7";
- this.ultraFILE_PATH7.Size = new System.Drawing.Size(333, 28);
- this.ultraFILE_PATH7.TabIndex = 44;
- this.ultraFILE_PATH7.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // ultraFILE_PATH6
- //
- this.ultraFILE_PATH6.AutoSize = false;
- this.ultraFILE_PATH6.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton5.Key = "select";
- editorButton5.Text = "查询";
- this.ultraFILE_PATH6.ButtonsLeft.Add(editorButton5);
- editorButton6.Key = "update";
- editorButton6.Text = "上传";
- this.ultraFILE_PATH6.ButtonsRight.Add(editorButton6);
- this.ultraFILE_PATH6.Location = new System.Drawing.Point(356, 294);
- this.ultraFILE_PATH6.Name = "ultraFILE_PATH6";
- this.ultraFILE_PATH6.Size = new System.Drawing.Size(333, 28);
- this.ultraFILE_PATH6.TabIndex = 43;
- this.ultraFILE_PATH6.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // ultraFILE_PATH5
- //
- this.ultraFILE_PATH5.AutoSize = false;
- this.ultraFILE_PATH5.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton7.Key = "select";
- editorButton7.Text = "查询";
- this.ultraFILE_PATH5.ButtonsLeft.Add(editorButton7);
- editorButton8.Key = "update";
- editorButton8.Text = "上传";
- this.ultraFILE_PATH5.ButtonsRight.Add(editorButton8);
- this.ultraFILE_PATH5.Location = new System.Drawing.Point(356, 267);
- this.ultraFILE_PATH5.Name = "ultraFILE_PATH5";
- this.ultraFILE_PATH5.Size = new System.Drawing.Size(333, 28);
- this.ultraFILE_PATH5.TabIndex = 42;
- this.ultraFILE_PATH5.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // ultraLabel15
- //
- appearance26.TextHAlignAsString = "Center";
- appearance26.TextVAlignAsString = "Middle";
- this.ultraLabel15.Appearance = appearance26;
- this.ultraLabel15.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel15.Location = new System.Drawing.Point(23, 351);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel15.TabIndex = 41;
- this.ultraLabel15.Text = "试验项目";
- //
- // ultraLabel14
- //
- appearance17.TextHAlignAsString = "Center";
- appearance17.TextVAlignAsString = "Middle";
- this.ultraLabel14.Appearance = appearance17;
- this.ultraLabel14.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel14.Location = new System.Drawing.Point(23, 323);
- this.ultraLabel14.Name = "ultraLabel14";
- this.ultraLabel14.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel14.TabIndex = 40;
- this.ultraLabel14.Text = "校准证书3";
- //
- // ultraLabel13
- //
- appearance18.TextHAlignAsString = "Center";
- appearance18.TextVAlignAsString = "Middle";
- this.ultraLabel13.Appearance = appearance18;
- this.ultraLabel13.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel13.Location = new System.Drawing.Point(23, 295);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel13.TabIndex = 39;
- this.ultraLabel13.Text = "校准证书2";
- //
- // ultraLabel12
- //
- appearance19.TextHAlignAsString = "Center";
- appearance19.TextVAlignAsString = "Middle";
- this.ultraLabel12.Appearance = appearance19;
- this.ultraLabel12.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel12.Location = new System.Drawing.Point(23, 267);
- this.ultraLabel12.Name = "ultraLabel12";
- this.ultraLabel12.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel12.TabIndex = 38;
- this.ultraLabel12.Text = "校准证书1";
- //
- // ultraFILE_PATH4
- //
- this.ultraFILE_PATH4.AutoSize = false;
- this.ultraFILE_PATH4.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton9.Key = "select";
- editorButton9.Text = "查询";
- this.ultraFILE_PATH4.ButtonsLeft.Add(editorButton9);
- editorButton10.Key = "update";
- editorButton10.Text = "上传";
- this.ultraFILE_PATH4.ButtonsRight.Add(editorButton10);
- this.ultraFILE_PATH4.Location = new System.Drawing.Point(356, 239);
- this.ultraFILE_PATH4.Name = "ultraFILE_PATH4";
- this.ultraFILE_PATH4.Size = new System.Drawing.Size(333, 28);
- this.ultraFILE_PATH4.TabIndex = 37;
- this.ultraFILE_PATH4.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // ultraFILE_PATH3
- //
- this.ultraFILE_PATH3.AutoSize = false;
- this.ultraFILE_PATH3.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton11.Key = "select";
- editorButton11.Text = "查询";
- this.ultraFILE_PATH3.ButtonsLeft.Add(editorButton11);
- editorButton12.Key = "update";
- editorButton12.Text = "上传";
- this.ultraFILE_PATH3.ButtonsRight.Add(editorButton12);
- this.ultraFILE_PATH3.Location = new System.Drawing.Point(356, 211);
- this.ultraFILE_PATH3.Name = "ultraFILE_PATH3";
- this.ultraFILE_PATH3.Size = new System.Drawing.Size(333, 28);
- this.ultraFILE_PATH3.TabIndex = 36;
- this.ultraFILE_PATH3.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // ultraFILE_PATH2
- //
- this.ultraFILE_PATH2.AutoSize = false;
- this.ultraFILE_PATH2.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton13.Key = "select";
- editorButton13.Text = "查询";
- this.ultraFILE_PATH2.ButtonsLeft.Add(editorButton13);
- editorButton14.Key = "update";
- editorButton14.Text = "上传";
- this.ultraFILE_PATH2.ButtonsRight.Add(editorButton14);
- this.ultraFILE_PATH2.Location = new System.Drawing.Point(356, 183);
- this.ultraFILE_PATH2.Name = "ultraFILE_PATH2";
- this.ultraFILE_PATH2.Size = new System.Drawing.Size(333, 28);
- this.ultraFILE_PATH2.TabIndex = 35;
- this.ultraFILE_PATH2.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // ultraFILE_PATH1
- //
- this.ultraFILE_PATH1.AutoSize = false;
- this.ultraFILE_PATH1.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton15.Key = "select";
- editorButton15.Text = "查询";
- this.ultraFILE_PATH1.ButtonsLeft.Add(editorButton15);
- editorButton16.Key = "update";
- editorButton16.Text = "上传";
- this.ultraFILE_PATH1.ButtonsRight.Add(editorButton16);
- this.ultraFILE_PATH1.Location = new System.Drawing.Point(356, 155);
- this.ultraFILE_PATH1.Name = "ultraFILE_PATH1";
- this.ultraFILE_PATH1.Size = new System.Drawing.Size(333, 28);
- this.ultraFILE_PATH1.TabIndex = 34;
- this.ultraFILE_PATH1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // ultraLabel11
- //
- appearance20.TextHAlignAsString = "Center";
- appearance20.TextVAlignAsString = "Middle";
- this.ultraLabel11.Appearance = appearance20;
- this.ultraLabel11.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel11.Location = new System.Drawing.Point(23, 239);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel11.TabIndex = 33;
- this.ultraLabel11.Text = "照片2";
- //
- // ultraLabel10
- //
- appearance13.TextHAlignAsString = "Center";
- appearance13.TextVAlignAsString = "Middle";
- this.ultraLabel10.Appearance = appearance13;
- this.ultraLabel10.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel10.Location = new System.Drawing.Point(23, 211);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel10.TabIndex = 32;
- this.ultraLabel10.Text = "照片1";
- //
- // ultraLabel9
- //
- appearance14.TextHAlignAsString = "Center";
- appearance14.TextVAlignAsString = "Middle";
- this.ultraLabel9.Appearance = appearance14;
- this.ultraLabel9.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel9.Location = new System.Drawing.Point(23, 183);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel9.TabIndex = 31;
- this.ultraLabel9.Text = "试验曲线2";
- //
- // ultraLabel8
- //
- appearance15.TextHAlignAsString = "Center";
- appearance15.TextVAlignAsString = "Middle";
- this.ultraLabel8.Appearance = appearance15;
- this.ultraLabel8.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel8.Location = new System.Drawing.Point(23, 155);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel8.TabIndex = 30;
- this.ultraLabel8.Text = "试验曲线1";
- //
- // ultraSTEEL_GRADE_NO
- //
- this.ultraSTEEL_GRADE_NO.AutoSize = false;
- this.ultraSTEEL_GRADE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraSTEEL_GRADE_NO.Enabled = false;
- this.ultraSTEEL_GRADE_NO.Location = new System.Drawing.Point(456, 71);
- this.ultraSTEEL_GRADE_NO.Name = "ultraSTEEL_GRADE_NO";
- this.ultraSTEEL_GRADE_NO.Size = new System.Drawing.Size(233, 28);
- this.ultraSTEEL_GRADE_NO.TabIndex = 29;
- //
- // ultraSAMPLE_SIZE
- //
- this.ultraSAMPLE_SIZE.AutoSize = false;
- this.ultraSAMPLE_SIZE.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraSAMPLE_SIZE.Enabled = false;
- this.ultraSAMPLE_SIZE.Location = new System.Drawing.Point(456, 99);
- this.ultraSAMPLE_SIZE.Name = "ultraSAMPLE_SIZE";
- this.ultraSAMPLE_SIZE.Size = new System.Drawing.Size(233, 28);
- this.ultraSAMPLE_SIZE.TabIndex = 28;
- //
- // ultraTECHNICAL_STANDARD
- //
- this.ultraTECHNICAL_STANDARD.AutoSize = false;
- this.ultraTECHNICAL_STANDARD.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraTECHNICAL_STANDARD.Location = new System.Drawing.Point(356, 127);
- this.ultraTECHNICAL_STANDARD.Name = "ultraTECHNICAL_STANDARD";
- this.ultraTECHNICAL_STANDARD.Size = new System.Drawing.Size(333, 28);
- this.ultraTECHNICAL_STANDARD.TabIndex = 27;
- //
- // ultraSAMPLE_NAME
- //
- this.ultraSAMPLE_NAME.AutoSize = false;
- this.ultraSAMPLE_NAME.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraSAMPLE_NAME.Enabled = false;
- this.ultraSAMPLE_NAME.Location = new System.Drawing.Point(123, 71);
- this.ultraSAMPLE_NAME.Name = "ultraSAMPLE_NAME";
- this.ultraSAMPLE_NAME.Size = new System.Drawing.Size(233, 28);
- this.ultraSAMPLE_NAME.TabIndex = 25;
- //
- // ultraSAMPLE_NO
- //
- this.ultraSAMPLE_NO.AutoSize = false;
- this.ultraSAMPLE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraSAMPLE_NO.Enabled = false;
- this.ultraSAMPLE_NO.Location = new System.Drawing.Point(123, 99);
- this.ultraSAMPLE_NO.Name = "ultraSAMPLE_NO";
- this.ultraSAMPLE_NO.Size = new System.Drawing.Size(233, 28);
- this.ultraSAMPLE_NO.TabIndex = 24;
- //
- // ultraCHECK_NO
- //
- this.ultraCHECK_NO.AutoSize = false;
- this.ultraCHECK_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraCHECK_NO.Enabled = false;
- this.ultraCHECK_NO.Location = new System.Drawing.Point(123, 43);
- this.ultraCHECK_NO.Name = "ultraCHECK_NO";
- this.ultraCHECK_NO.Size = new System.Drawing.Size(233, 28);
- this.ultraCHECK_NO.TabIndex = 21;
- //
- // ultraLabel7
- //
- appearance16.TextHAlignAsString = "Center";
- appearance16.TextVAlignAsString = "Middle";
- this.ultraLabel7.Appearance = appearance16;
- this.ultraLabel7.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel7.Location = new System.Drawing.Point(23, 127);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel7.TabIndex = 6;
- this.ultraLabel7.Text = "依据标准";
- //
- // ultraLabel6
- //
- appearance76.TextHAlignAsString = "Center";
- appearance76.TextVAlignAsString = "Middle";
- this.ultraLabel6.Appearance = appearance76;
- this.ultraLabel6.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel6.Location = new System.Drawing.Point(356, 99);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel6.TabIndex = 5;
- this.ultraLabel6.Text = "规格";
- //
- // ultraLabel5
- //
- appearance78.TextHAlignAsString = "Center";
- appearance78.TextVAlignAsString = "Middle";
- this.ultraLabel5.Appearance = appearance78;
- this.ultraLabel5.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel5.Location = new System.Drawing.Point(23, 99);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel5.TabIndex = 4;
- this.ultraLabel5.Text = "试样编号";
- //
- // ultraLabel4
- //
- appearance81.TextHAlignAsString = "Center";
- appearance81.TextVAlignAsString = "Middle";
- this.ultraLabel4.Appearance = appearance81;
- this.ultraLabel4.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel4.Location = new System.Drawing.Point(356, 71);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel4.TabIndex = 3;
- this.ultraLabel4.Text = "钢级";
- //
- // ultraLabel3
- //
- appearance82.TextHAlignAsString = "Center";
- appearance82.TextVAlignAsString = "Middle";
- this.ultraLabel3.Appearance = appearance82;
- this.ultraLabel3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel3.Location = new System.Drawing.Point(161, 14);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(412, 28);
- this.ultraLabel3.TabIndex = 2;
- this.ultraLabel3.Text = "联合力、密封性能(含静水压)试验报告";
- //
- // ultraLabel2
- //
- appearance83.TextHAlignAsString = "Center";
- appearance83.TextVAlignAsString = "Middle";
- this.ultraLabel2.Appearance = appearance83;
- this.ultraLabel2.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel2.Location = new System.Drawing.Point(23, 71);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel2.TabIndex = 1;
- this.ultraLabel2.Text = "试样名称";
- //
- // ultraLabel1
- //
- appearance84.TextHAlignAsString = "Center";
- appearance84.TextVAlignAsString = "Middle";
- this.ultraLabel1.Appearance = appearance84;
- this.ultraLabel1.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel1.Location = new System.Drawing.Point(23, 43);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel1.TabIndex = 0;
- this.ultraLabel1.Text = "检验编号";
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.ultraPanel2);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(780, 724);
- //
- // ultraPanel2
- //
- this.ultraPanel2.AutoScroll = true;
- //
- // ultraPanel2.ClientArea
- //
- this.ultraPanel2.ClientArea.Controls.Add(this.lsTEST_ITEM);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel17);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsFILE_PATH3);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel16);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraButton2);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsFILE_PATH2);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsFILE_PATH1);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsTEST_RESULTS);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsNOTE);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsSTEEL_GRADE_NO);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsSAMPLE_SIZE);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsTECHNICAL_STANDARD);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsSAMPLE_NAME);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsSAMPLE_NO);
- this.ultraPanel2.ClientArea.Controls.Add(this.lsCHECK_NO);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel78);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel86);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel87);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel88);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel90);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel91);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel92);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel93);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel94);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel95);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel96);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel32);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel43);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel44);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel45);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel46);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel47);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel48);
- this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel2.Name = "ultraPanel2";
- this.ultraPanel2.Size = new System.Drawing.Size(780, 724);
- this.ultraPanel2.TabIndex = 85;
- //
- // lsTEST_ITEM
- //
- this.lsTEST_ITEM.AutoSize = false;
- this.lsTEST_ITEM.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.lsTEST_ITEM.Location = new System.Drawing.Point(356, 323);
- this.lsTEST_ITEM.Name = "lsTEST_ITEM";
- this.lsTEST_ITEM.Size = new System.Drawing.Size(333, 28);
- this.lsTEST_ITEM.TabIndex = 89;
- //
- // ultraLabel17
- //
- appearance32.TextHAlignAsString = "Center";
- appearance32.TextVAlignAsString = "Middle";
- this.ultraLabel17.Appearance = appearance32;
- this.ultraLabel17.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel17.Location = new System.Drawing.Point(23, 323);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel17.TabIndex = 88;
- this.ultraLabel17.Text = "试验项目";
- //
- // lsFILE_PATH3
- //
- this.lsFILE_PATH3.AutoSize = false;
- this.lsFILE_PATH3.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton17.Key = "select";
- editorButton17.Text = "查询";
- this.lsFILE_PATH3.ButtonsLeft.Add(editorButton17);
- editorButton18.Key = "update";
- editorButton18.Text = "上传";
- this.lsFILE_PATH3.ButtonsRight.Add(editorButton18);
- this.lsFILE_PATH3.Location = new System.Drawing.Point(356, 295);
- this.lsFILE_PATH3.Name = "lsFILE_PATH3";
- this.lsFILE_PATH3.Size = new System.Drawing.Size(333, 28);
- this.lsFILE_PATH3.TabIndex = 87;
- this.lsFILE_PATH3.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // ultraLabel16
- //
- appearance22.TextHAlignAsString = "Center";
- appearance22.TextVAlignAsString = "Middle";
- this.ultraLabel16.Appearance = appearance22;
- this.ultraLabel16.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel16.Location = new System.Drawing.Point(23, 295);
- this.ultraLabel16.Name = "ultraLabel16";
- this.ultraLabel16.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel16.TabIndex = 86;
- this.ultraLabel16.Text = "校准证书";
- //
- // ultraButton2
- //
- this.ultraButton2.Location = new System.Drawing.Point(298, 367);
- this.ultraButton2.Name = "ultraButton2";
- this.ultraButton2.Size = new System.Drawing.Size(100, 28);
- this.ultraButton2.TabIndex = 85;
- this.ultraButton2.Text = "保 存";
- this.ultraButton2.Click += new System.EventHandler(this.ultraButton2_Click);
- //
- // lsFILE_PATH2
- //
- this.lsFILE_PATH2.AutoSize = false;
- this.lsFILE_PATH2.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton19.Key = "select";
- editorButton19.Text = "查询";
- this.lsFILE_PATH2.ButtonsLeft.Add(editorButton19);
- editorButton20.Key = "update";
- editorButton20.Text = "上传";
- this.lsFILE_PATH2.ButtonsRight.Add(editorButton20);
- this.lsFILE_PATH2.Location = new System.Drawing.Point(356, 267);
- this.lsFILE_PATH2.Name = "lsFILE_PATH2";
- this.lsFILE_PATH2.Size = new System.Drawing.Size(333, 28);
- this.lsFILE_PATH2.TabIndex = 37;
- this.lsFILE_PATH2.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // lsFILE_PATH1
- //
- this.lsFILE_PATH1.AutoSize = false;
- this.lsFILE_PATH1.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton21.Key = "select";
- editorButton21.Text = "查询";
- this.lsFILE_PATH1.ButtonsLeft.Add(editorButton21);
- editorButton22.Key = "update";
- editorButton22.Text = "上传";
- this.lsFILE_PATH1.ButtonsRight.Add(editorButton22);
- this.lsFILE_PATH1.Location = new System.Drawing.Point(356, 239);
- this.lsFILE_PATH1.Name = "lsFILE_PATH1";
- this.lsFILE_PATH1.Size = new System.Drawing.Size(333, 28);
- this.lsFILE_PATH1.TabIndex = 35;
- this.lsFILE_PATH1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // lsTEST_RESULTS
- //
- this.lsTEST_RESULTS.AutoSize = false;
- this.lsTEST_RESULTS.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.lsTEST_RESULTS.Location = new System.Drawing.Point(356, 183);
- this.lsTEST_RESULTS.Name = "lsTEST_RESULTS";
- this.lsTEST_RESULTS.Size = new System.Drawing.Size(333, 57);
- this.lsTEST_RESULTS.TabIndex = 31;
- //
- // lsNOTE
- //
- this.lsNOTE.AutoSize = false;
- this.lsNOTE.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.lsNOTE.Location = new System.Drawing.Point(356, 155);
- this.lsNOTE.Name = "lsNOTE";
- this.lsNOTE.Size = new System.Drawing.Size(333, 28);
- this.lsNOTE.TabIndex = 30;
- //
- // lsSTEEL_GRADE_NO
- //
- this.lsSTEEL_GRADE_NO.AutoSize = false;
- this.lsSTEEL_GRADE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.lsSTEEL_GRADE_NO.Enabled = false;
- this.lsSTEEL_GRADE_NO.Location = new System.Drawing.Point(456, 71);
- this.lsSTEEL_GRADE_NO.Name = "lsSTEEL_GRADE_NO";
- this.lsSTEEL_GRADE_NO.Size = new System.Drawing.Size(233, 28);
- this.lsSTEEL_GRADE_NO.TabIndex = 29;
- //
- // lsSAMPLE_SIZE
- //
- this.lsSAMPLE_SIZE.AutoSize = false;
- this.lsSAMPLE_SIZE.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.lsSAMPLE_SIZE.Enabled = false;
- this.lsSAMPLE_SIZE.Location = new System.Drawing.Point(456, 99);
- this.lsSAMPLE_SIZE.Name = "lsSAMPLE_SIZE";
- this.lsSAMPLE_SIZE.Size = new System.Drawing.Size(233, 28);
- this.lsSAMPLE_SIZE.TabIndex = 28;
- //
- // lsTECHNICAL_STANDARD
- //
- this.lsTECHNICAL_STANDARD.AutoSize = false;
- this.lsTECHNICAL_STANDARD.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.lsTECHNICAL_STANDARD.Location = new System.Drawing.Point(356, 127);
- this.lsTECHNICAL_STANDARD.Name = "lsTECHNICAL_STANDARD";
- this.lsTECHNICAL_STANDARD.Size = new System.Drawing.Size(333, 28);
- this.lsTECHNICAL_STANDARD.TabIndex = 27;
- //
- // lsSAMPLE_NAME
- //
- this.lsSAMPLE_NAME.AutoSize = false;
- this.lsSAMPLE_NAME.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.lsSAMPLE_NAME.Enabled = false;
- this.lsSAMPLE_NAME.Location = new System.Drawing.Point(123, 71);
- this.lsSAMPLE_NAME.Name = "lsSAMPLE_NAME";
- this.lsSAMPLE_NAME.Size = new System.Drawing.Size(233, 28);
- this.lsSAMPLE_NAME.TabIndex = 25;
- //
- // lsSAMPLE_NO
- //
- this.lsSAMPLE_NO.AutoSize = false;
- this.lsSAMPLE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.lsSAMPLE_NO.Enabled = false;
- this.lsSAMPLE_NO.Location = new System.Drawing.Point(123, 99);
- this.lsSAMPLE_NO.Name = "lsSAMPLE_NO";
- this.lsSAMPLE_NO.Size = new System.Drawing.Size(233, 28);
- this.lsSAMPLE_NO.TabIndex = 24;
- //
- // lsCHECK_NO
- //
- this.lsCHECK_NO.AutoSize = false;
- this.lsCHECK_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.lsCHECK_NO.Enabled = false;
- this.lsCHECK_NO.Location = new System.Drawing.Point(123, 43);
- this.lsCHECK_NO.Name = "lsCHECK_NO";
- this.lsCHECK_NO.Size = new System.Drawing.Size(233, 28);
- this.lsCHECK_NO.TabIndex = 21;
- //
- // ultraLabel78
- //
- appearance21.TextHAlignAsString = "Center";
- appearance21.TextVAlignAsString = "Middle";
- this.ultraLabel78.Appearance = appearance21;
- this.ultraLabel78.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel78.Location = new System.Drawing.Point(23, 267);
- this.ultraLabel78.Name = "ultraLabel78";
- this.ultraLabel78.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel78.TabIndex = 18;
- this.ultraLabel78.Text = "照片";
- //
- // ultraLabel86
- //
- appearance30.TextHAlignAsString = "Center";
- appearance30.TextVAlignAsString = "Middle";
- this.ultraLabel86.Appearance = appearance30;
- this.ultraLabel86.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel86.Location = new System.Drawing.Point(23, 239);
- this.ultraLabel86.Name = "ultraLabel86";
- this.ultraLabel86.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel86.TabIndex = 10;
- this.ultraLabel86.Text = "试验曲线";
- //
- // ultraLabel87
- //
- appearance31.TextHAlignAsString = "Center";
- appearance31.TextVAlignAsString = "Middle";
- this.ultraLabel87.Appearance = appearance31;
- this.ultraLabel87.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel87.Location = new System.Drawing.Point(23, 183);
- this.ultraLabel87.Name = "ultraLabel87";
- this.ultraLabel87.Size = new System.Drawing.Size(333, 57);
- this.ultraLabel87.TabIndex = 9;
- this.ultraLabel87.Text = "结果评定";
- //
- // ultraLabel88
- //
- appearance23.TextHAlignAsString = "Center";
- appearance23.TextVAlignAsString = "Middle";
- this.ultraLabel88.Appearance = appearance23;
- this.ultraLabel88.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel88.Location = new System.Drawing.Point(23, 155);
- this.ultraLabel88.Name = "ultraLabel88";
- this.ultraLabel88.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel88.TabIndex = 8;
- this.ultraLabel88.Text = "备注";
- //
- // ultraLabel90
- //
- appearance34.TextHAlignAsString = "Center";
- appearance34.TextVAlignAsString = "Middle";
- this.ultraLabel90.Appearance = appearance34;
- this.ultraLabel90.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel90.Location = new System.Drawing.Point(23, 127);
- this.ultraLabel90.Name = "ultraLabel90";
- this.ultraLabel90.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel90.TabIndex = 6;
- this.ultraLabel90.Text = "依据标准";
- //
- // ultraLabel91
- //
- appearance35.TextHAlignAsString = "Center";
- appearance35.TextVAlignAsString = "Middle";
- this.ultraLabel91.Appearance = appearance35;
- this.ultraLabel91.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel91.Location = new System.Drawing.Point(356, 99);
- this.ultraLabel91.Name = "ultraLabel91";
- this.ultraLabel91.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel91.TabIndex = 5;
- this.ultraLabel91.Text = "规格";
- //
- // ultraLabel92
- //
- appearance36.TextHAlignAsString = "Center";
- appearance36.TextVAlignAsString = "Middle";
- this.ultraLabel92.Appearance = appearance36;
- this.ultraLabel92.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel92.Location = new System.Drawing.Point(23, 99);
- this.ultraLabel92.Name = "ultraLabel92";
- this.ultraLabel92.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel92.TabIndex = 4;
- this.ultraLabel92.Text = "试样编号";
- //
- // ultraLabel93
- //
- appearance37.TextHAlignAsString = "Center";
- appearance37.TextVAlignAsString = "Middle";
- this.ultraLabel93.Appearance = appearance37;
- this.ultraLabel93.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel93.Location = new System.Drawing.Point(356, 71);
- this.ultraLabel93.Name = "ultraLabel93";
- this.ultraLabel93.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel93.TabIndex = 3;
- this.ultraLabel93.Text = "钢级";
- //
- // ultraLabel94
- //
- appearance38.TextHAlignAsString = "Center";
- appearance38.TextVAlignAsString = "Middle";
- this.ultraLabel94.Appearance = appearance38;
- this.ultraLabel94.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel94.Location = new System.Drawing.Point(164, 14);
- this.ultraLabel94.Name = "ultraLabel94";
- this.ultraLabel94.Size = new System.Drawing.Size(435, 28);
- this.ultraLabel94.TabIndex = 2;
- this.ultraLabel94.Text = "压溃、爆破、拉力试验报告";
- //
- // ultraLabel95
- //
- appearance39.TextHAlignAsString = "Center";
- appearance39.TextVAlignAsString = "Middle";
- this.ultraLabel95.Appearance = appearance39;
- this.ultraLabel95.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel95.Location = new System.Drawing.Point(23, 71);
- this.ultraLabel95.Name = "ultraLabel95";
- this.ultraLabel95.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel95.TabIndex = 1;
- this.ultraLabel95.Text = "试样名称";
- //
- // ultraLabel96
- //
- appearance40.TextHAlignAsString = "Center";
- appearance40.TextVAlignAsString = "Middle";
- this.ultraLabel96.Appearance = appearance40;
- this.ultraLabel96.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel96.Location = new System.Drawing.Point(23, 43);
- this.ultraLabel96.Name = "ultraLabel96";
- this.ultraLabel96.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel96.TabIndex = 0;
- this.ultraLabel96.Text = "检验编号";
- //
- // ultraLabel32
- //
- appearance80.TextHAlignAsString = "Center";
- appearance80.TextVAlignAsString = "Middle";
- this.ultraLabel32.Appearance = appearance80;
- this.ultraLabel32.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel32.Location = new System.Drawing.Point(23, 267);
- this.ultraLabel32.Name = "ultraLabel32";
- this.ultraLabel32.Size = new System.Drawing.Size(160, 28);
- this.ultraLabel32.TabIndex = 16;
- this.ultraLabel32.Text = "试样尺寸";
- //
- // ultraLabel43
- //
- appearance91.TextHAlignAsString = "Center";
- appearance91.TextVAlignAsString = "Middle";
- this.ultraLabel43.Appearance = appearance91;
- this.ultraLabel43.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel43.Location = new System.Drawing.Point(356, 99);
- this.ultraLabel43.Name = "ultraLabel43";
- this.ultraLabel43.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel43.TabIndex = 5;
- this.ultraLabel43.Text = "规格";
- //
- // ultraLabel44
- //
- appearance92.TextHAlignAsString = "Center";
- appearance92.TextVAlignAsString = "Middle";
- this.ultraLabel44.Appearance = appearance92;
- this.ultraLabel44.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel44.Location = new System.Drawing.Point(23, 99);
- this.ultraLabel44.Name = "ultraLabel44";
- this.ultraLabel44.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel44.TabIndex = 4;
- this.ultraLabel44.Text = "试样编号";
- //
- // ultraLabel45
- //
- appearance93.TextHAlignAsString = "Center";
- appearance93.TextVAlignAsString = "Middle";
- this.ultraLabel45.Appearance = appearance93;
- this.ultraLabel45.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel45.Location = new System.Drawing.Point(356, 71);
- this.ultraLabel45.Name = "ultraLabel45";
- this.ultraLabel45.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel45.TabIndex = 3;
- this.ultraLabel45.Text = "钢级";
- //
- // ultraLabel46
- //
- appearance94.TextHAlignAsString = "Center";
- appearance94.TextVAlignAsString = "Middle";
- this.ultraLabel46.Appearance = appearance94;
- this.ultraLabel46.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel46.Location = new System.Drawing.Point(279, 14);
- this.ultraLabel46.Name = "ultraLabel46";
- this.ultraLabel46.Size = new System.Drawing.Size(188, 28);
- this.ultraLabel46.TabIndex = 2;
- this.ultraLabel46.Text = "点蚀试验报告";
- //
- // ultraLabel47
- //
- appearance95.TextHAlignAsString = "Center";
- appearance95.TextVAlignAsString = "Middle";
- this.ultraLabel47.Appearance = appearance95;
- this.ultraLabel47.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel47.Location = new System.Drawing.Point(23, 71);
- this.ultraLabel47.Name = "ultraLabel47";
- this.ultraLabel47.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel47.TabIndex = 1;
- this.ultraLabel47.Text = "试样名称";
- //
- // ultraLabel48
- //
- appearance96.TextHAlignAsString = "Center";
- appearance96.TextVAlignAsString = "Middle";
- this.ultraLabel48.Appearance = appearance96;
- this.ultraLabel48.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel48.Location = new System.Drawing.Point(23, 43);
- this.ultraLabel48.Name = "ultraLabel48";
- this.ultraLabel48.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel48.TabIndex = 0;
- this.ultraLabel48.Text = "检验编号";
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Controls.Add(this.panel2);
- this.ultraTabPageControl3.Controls.Add(this.ultraPanel3);
- this.ultraTabPageControl3.Location = new System.Drawing.Point(1, 23);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(780, 724);
- //
- // panel2
- //
- this.panel2.Controls.Add(this.splitContainer2);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(0, 238);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(780, 486);
- this.panel2.TabIndex = 98;
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Name = "splitContainer2";
- this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.ultraPanel6);
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.ultraPanel7);
- this.splitContainer2.Size = new System.Drawing.Size(780, 486);
- this.splitContainer2.SplitterDistance = 219;
- this.splitContainer2.TabIndex = 0;
- //
- // ultraPanel6
- //
- //
- // ultraPanel6.ClientArea
- //
- this.ultraPanel6.ClientArea.Controls.Add(this.ultraGrid2);
- this.ultraPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel6.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel6.Name = "ultraPanel6";
- this.ultraPanel6.Size = new System.Drawing.Size(780, 219);
- this.ultraPanel6.TabIndex = 1;
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table2";
- this.ultraGrid2.DataSource = this.dataSet1;
- appearance33.BackColor = System.Drawing.SystemColors.Window;
- appearance33.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid2.DisplayLayout.Appearance = appearance33;
- ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn9.Header.VisiblePosition = 0;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn10.Header.VisiblePosition = 1;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn11.Header.VisiblePosition = 2;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(81, 0);
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn12.Header.VisiblePosition = 3;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn13.Header.VisiblePosition = 4;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.Header.VisiblePosition = 5;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn15.Header.VisiblePosition = 6;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 0);
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn16.Header.VisiblePosition = 7;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn17.Header.VisiblePosition = 8;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(105, 0);
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn18.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn18.EditorComponent = this.ultraTextEditor1;
- ultraGridColumn18.Header.VisiblePosition = 9;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn19.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn19.EditorComponent = this.ultraTextEditor1;
- ultraGridColumn19.Header.VisiblePosition = 10;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(91, 0);
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn20.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn20.EditorComponent = this.ultraTextEditor1;
- ultraGridColumn20.Header.VisiblePosition = 11;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn21.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn21.EditorComponent = this.ultraTextEditor1;
- ultraGridColumn21.Header.VisiblePosition = 12;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(85, 0);
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn22.Header.VisiblePosition = 13;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn22.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- ultraGridColumn23.Header.VisiblePosition = 14;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23});
- ultraGridBand2.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnBottom;
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance41.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance41.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance41.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance41.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance41;
- appearance43.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance43;
- this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance42.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance42.BackColor2 = System.Drawing.SystemColors.Control;
- appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance42.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance42;
- this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
- appearance46.BackColor = System.Drawing.SystemColors.Window;
- appearance46.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance46;
- appearance49.BackColor = System.Drawing.SystemColors.Highlight;
- appearance49.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance49;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance51.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance51;
- appearance47.BorderColor = System.Drawing.Color.Silver;
- appearance47.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance47;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- appearance45.BackColor = System.Drawing.SystemColors.Control;
- appearance45.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance45.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance45.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance45.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance45;
- appearance44.TextHAlignAsString = "Left";
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance44;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance50.BackColor = System.Drawing.SystemColors.Window;
- appearance50.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance50;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance48.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance48;
- this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(780, 219);
- this.ultraGrid2.TabIndex = 8;
- this.ultraGrid2.Text = "ultraGrid2";
- this.ultraGrid2.AfterRowInsert += new Infragistics.Win.UltraWinGrid.RowEventHandler(this.ultraGrid2_AfterRowInsert);
- this.ultraGrid2.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid2_ClickCellButton);
- //
- // ultraPanel7
- //
- //
- // ultraPanel7.ClientArea
- //
- this.ultraPanel7.ClientArea.Controls.Add(this.ultraTextEditor1);
- this.ultraPanel7.ClientArea.Controls.Add(this.ultraButton3);
- this.ultraPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel7.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel7.Name = "ultraPanel7";
- this.ultraPanel7.Size = new System.Drawing.Size(780, 263);
- this.ultraPanel7.TabIndex = 87;
- //
- // ultraButton3
- //
- this.ultraButton3.Location = new System.Drawing.Point(303, 13);
- this.ultraButton3.Name = "ultraButton3";
- this.ultraButton3.Size = new System.Drawing.Size(96, 28);
- this.ultraButton3.TabIndex = 86;
- this.ultraButton3.Text = "保 存";
- this.ultraButton3.Click += new System.EventHandler(this.ultraButton3_Click);
- //
- // ultraPanel3
- //
- this.ultraPanel3.AutoScroll = true;
- //
- // ultraPanel3.ClientArea
- //
- this.ultraPanel3.ClientArea.Controls.Add(this.kkTEST_RESULTS);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel20);
- this.ultraPanel3.ClientArea.Controls.Add(this.kkFILE_PATH1);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel18);
- this.ultraPanel3.ClientArea.Controls.Add(this.kkCHECK_NO);
- this.ultraPanel3.ClientArea.Controls.Add(this.kkCONNECTION);
- this.ultraPanel3.ClientArea.Controls.Add(this.kkSTEEL_GRADE_NO);
- this.ultraPanel3.ClientArea.Controls.Add(this.kkSAMPLE_SIZE);
- this.ultraPanel3.ClientArea.Controls.Add(this.kkTECHNICAL_STANDARD);
- this.ultraPanel3.ClientArea.Controls.Add(this.kkSAMPLE_NAME);
- this.ultraPanel3.ClientArea.Controls.Add(this.kkSAMPLE_NO);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel66);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel68);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel83);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel97);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel98);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel99);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel100);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel101);
- this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel3.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel3.Name = "ultraPanel3";
- this.ultraPanel3.Size = new System.Drawing.Size(780, 238);
- this.ultraPanel3.TabIndex = 97;
- //
- // kkFILE_PATH1
- //
- this.kkFILE_PATH1.AutoSize = false;
- this.kkFILE_PATH1.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- editorButton23.Key = "select";
- editorButton23.Text = "查询";
- this.kkFILE_PATH1.ButtonsLeft.Add(editorButton23);
- editorButton24.Key = "update";
- editorButton24.Text = "上传";
- this.kkFILE_PATH1.ButtonsRight.Add(editorButton24);
- this.kkFILE_PATH1.Location = new System.Drawing.Point(356, 183);
- this.kkFILE_PATH1.Name = "kkFILE_PATH1";
- this.kkFILE_PATH1.Size = new System.Drawing.Size(333, 28);
- this.kkFILE_PATH1.TabIndex = 119;
- this.kkFILE_PATH1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
- //
- // ultraLabel18
- //
- appearance27.TextHAlignAsString = "Center";
- appearance27.TextVAlignAsString = "Middle";
- this.ultraLabel18.Appearance = appearance27;
- this.ultraLabel18.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel18.Location = new System.Drawing.Point(23, 183);
- this.ultraLabel18.Name = "ultraLabel18";
- this.ultraLabel18.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel18.TabIndex = 118;
- this.ultraLabel18.Text = "校准证书";
- //
- // kkCHECK_NO
- //
- this.kkCHECK_NO.AutoSize = false;
- this.kkCHECK_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.kkCHECK_NO.Enabled = false;
- this.kkCHECK_NO.Location = new System.Drawing.Point(123, 43);
- this.kkCHECK_NO.Name = "kkCHECK_NO";
- this.kkCHECK_NO.Size = new System.Drawing.Size(233, 28);
- this.kkCHECK_NO.TabIndex = 117;
- //
- // kkCONNECTION
- //
- this.kkCONNECTION.AutoSize = false;
- this.kkCONNECTION.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.kkCONNECTION.Location = new System.Drawing.Point(356, 155);
- this.kkCONNECTION.Name = "kkCONNECTION";
- this.kkCONNECTION.Size = new System.Drawing.Size(333, 28);
- this.kkCONNECTION.TabIndex = 30;
- //
- // kkSTEEL_GRADE_NO
- //
- this.kkSTEEL_GRADE_NO.AutoSize = false;
- this.kkSTEEL_GRADE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.kkSTEEL_GRADE_NO.Enabled = false;
- this.kkSTEEL_GRADE_NO.Location = new System.Drawing.Point(456, 71);
- this.kkSTEEL_GRADE_NO.Name = "kkSTEEL_GRADE_NO";
- this.kkSTEEL_GRADE_NO.Size = new System.Drawing.Size(233, 28);
- this.kkSTEEL_GRADE_NO.TabIndex = 29;
- //
- // kkSAMPLE_SIZE
- //
- this.kkSAMPLE_SIZE.AutoSize = false;
- this.kkSAMPLE_SIZE.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.kkSAMPLE_SIZE.Enabled = false;
- this.kkSAMPLE_SIZE.Location = new System.Drawing.Point(456, 99);
- this.kkSAMPLE_SIZE.Name = "kkSAMPLE_SIZE";
- this.kkSAMPLE_SIZE.Size = new System.Drawing.Size(233, 28);
- this.kkSAMPLE_SIZE.TabIndex = 28;
- //
- // kkTECHNICAL_STANDARD
- //
- this.kkTECHNICAL_STANDARD.AutoSize = false;
- this.kkTECHNICAL_STANDARD.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.kkTECHNICAL_STANDARD.Location = new System.Drawing.Point(356, 127);
- this.kkTECHNICAL_STANDARD.Name = "kkTECHNICAL_STANDARD";
- this.kkTECHNICAL_STANDARD.Size = new System.Drawing.Size(333, 28);
- this.kkTECHNICAL_STANDARD.TabIndex = 27;
- //
- // kkSAMPLE_NAME
- //
- this.kkSAMPLE_NAME.AutoSize = false;
- this.kkSAMPLE_NAME.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.kkSAMPLE_NAME.Enabled = false;
- this.kkSAMPLE_NAME.Location = new System.Drawing.Point(123, 71);
- this.kkSAMPLE_NAME.Name = "kkSAMPLE_NAME";
- this.kkSAMPLE_NAME.Size = new System.Drawing.Size(233, 28);
- this.kkSAMPLE_NAME.TabIndex = 25;
- //
- // kkSAMPLE_NO
- //
- this.kkSAMPLE_NO.AutoSize = false;
- this.kkSAMPLE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.kkSAMPLE_NO.Enabled = false;
- this.kkSAMPLE_NO.Location = new System.Drawing.Point(123, 99);
- this.kkSAMPLE_NO.Name = "kkSAMPLE_NO";
- this.kkSAMPLE_NO.Size = new System.Drawing.Size(233, 28);
- this.kkSAMPLE_NO.TabIndex = 24;
- //
- // ultraLabel66
- //
- appearance25.TextHAlignAsString = "Center";
- appearance25.TextVAlignAsString = "Middle";
- this.ultraLabel66.Appearance = appearance25;
- this.ultraLabel66.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel66.Location = new System.Drawing.Point(23, 155);
- this.ultraLabel66.Name = "ultraLabel66";
- this.ultraLabel66.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel66.TabIndex = 8;
- this.ultraLabel66.Text = "扣 型";
- //
- // ultraLabel68
- //
- appearance87.TextHAlignAsString = "Center";
- appearance87.TextVAlignAsString = "Middle";
- this.ultraLabel68.Appearance = appearance87;
- this.ultraLabel68.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel68.Location = new System.Drawing.Point(23, 127);
- this.ultraLabel68.Name = "ultraLabel68";
- this.ultraLabel68.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel68.TabIndex = 6;
- this.ultraLabel68.Text = "依据标准";
- //
- // ultraLabel83
- //
- appearance88.TextHAlignAsString = "Center";
- appearance88.TextVAlignAsString = "Middle";
- this.ultraLabel83.Appearance = appearance88;
- this.ultraLabel83.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel83.Location = new System.Drawing.Point(356, 99);
- this.ultraLabel83.Name = "ultraLabel83";
- this.ultraLabel83.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel83.TabIndex = 5;
- this.ultraLabel83.Text = "规格";
- //
- // ultraLabel97
- //
- appearance90.TextHAlignAsString = "Center";
- appearance90.TextVAlignAsString = "Middle";
- this.ultraLabel97.Appearance = appearance90;
- this.ultraLabel97.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel97.Location = new System.Drawing.Point(23, 99);
- this.ultraLabel97.Name = "ultraLabel97";
- this.ultraLabel97.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel97.TabIndex = 4;
- this.ultraLabel97.Text = "试样编号";
- //
- // ultraLabel98
- //
- appearance97.TextHAlignAsString = "Center";
- appearance97.TextVAlignAsString = "Middle";
- this.ultraLabel98.Appearance = appearance97;
- this.ultraLabel98.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel98.Location = new System.Drawing.Point(356, 71);
- this.ultraLabel98.Name = "ultraLabel98";
- this.ultraLabel98.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel98.TabIndex = 3;
- this.ultraLabel98.Text = "钢级";
- //
- // ultraLabel99
- //
- appearance98.TextHAlignAsString = "Center";
- appearance98.TextVAlignAsString = "Middle";
- this.ultraLabel99.Appearance = appearance98;
- this.ultraLabel99.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel99.Location = new System.Drawing.Point(210, 14);
- this.ultraLabel99.Name = "ultraLabel99";
- this.ultraLabel99.Size = new System.Drawing.Size(316, 28);
- this.ultraLabel99.TabIndex = 2;
- this.ultraLabel99.Text = "上卸扣试验报告";
- //
- // ultraLabel100
- //
- appearance99.TextHAlignAsString = "Center";
- appearance99.TextVAlignAsString = "Middle";
- this.ultraLabel100.Appearance = appearance99;
- this.ultraLabel100.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel100.Location = new System.Drawing.Point(23, 71);
- this.ultraLabel100.Name = "ultraLabel100";
- this.ultraLabel100.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel100.TabIndex = 1;
- this.ultraLabel100.Text = "试样名称";
- //
- // ultraLabel101
- //
- appearance100.TextHAlignAsString = "Center";
- appearance100.TextVAlignAsString = "Middle";
- this.ultraLabel101.Appearance = appearance100;
- this.ultraLabel101.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel101.Location = new System.Drawing.Point(23, 43);
- this.ultraLabel101.Name = "ultraLabel101";
- this.ultraLabel101.Size = new System.Drawing.Size(100, 28);
- this.ultraLabel101.TabIndex = 0;
- this.ultraLabel101.Text = "检验编号";
- //
- // ultraTabControl1
- //
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
- this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl1.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.ultraTabControl1.Size = new System.Drawing.Size(784, 750);
- this.ultraTabControl1.TabIndex = 1;
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "联合力、密封性能(含静水压)试验报告";
- ultraTab2.TabPage = this.ultraTabPageControl2;
- ultraTab2.Text = "压溃、爆破、拉力试验报告";
- ultraTab3.TabPage = this.ultraTabPageControl3;
- ultraTab3.Text = "上卸扣试验报告";
- this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab2,
- ultraTab3});
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(780, 724);
- //
- // ultraLabel20
- //
- appearance24.TextHAlignAsString = "Center";
- appearance24.TextVAlignAsString = "Middle";
- this.ultraLabel20.Appearance = appearance24;
- this.ultraLabel20.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel20.Location = new System.Drawing.Point(23, 210);
- this.ultraLabel20.Name = "ultraLabel20";
- this.ultraLabel20.Size = new System.Drawing.Size(333, 28);
- this.ultraLabel20.TabIndex = 120;
- this.ultraLabel20.Text = "结果评定";
- //
- // kkTEST_RESULTS
- //
- this.kkTEST_RESULTS.AutoSize = false;
- this.kkTEST_RESULTS.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.kkTEST_RESULTS.Location = new System.Drawing.Point(356, 210);
- this.kkTEST_RESULTS.Name = "kkTEST_RESULTS";
- this.kkTEST_RESULTS.Size = new System.Drawing.Size(333, 28);
- this.kkTEST_RESULTS.TabIndex = 121;
- //
- // FrmOutdecLabEngDataParm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(784, 750);
- this.Controls.Add(this.ultraTabControl1);
- this.Name = "FrmOutdecLabEngDataParm";
- this.Text = "商检工程试验条件";
- this.Load += new System.EventHandler(this.FrmOutdecLabMecDataParm_Load);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- this.ultraTabPageControl1.ResumeLayout(false);
- this.panel1.ResumeLayout(false);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- this.ultraPanel5.ClientArea.ResumeLayout(false);
- this.ultraPanel5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- this.ultraPanel4.ClientArea.ResumeLayout(false);
- this.ultraPanel4.ResumeLayout(false);
- this.ultraPanel1.ClientArea.ResumeLayout(false);
- this.ultraPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTEST_RESULTS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTEST_ITEM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSTEEL_GRADE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_SIZE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTECHNICAL_STANDARD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCHECK_NO)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- this.ultraPanel2.ClientArea.ResumeLayout(false);
- this.ultraPanel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.lsTEST_ITEM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsTEST_RESULTS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsNOTE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsSTEEL_GRADE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_SIZE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsTECHNICAL_STANDARD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.lsCHECK_NO)).EndInit();
- this.ultraTabPageControl3.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- this.ultraPanel6.ClientArea.ResumeLayout(false);
- this.ultraPanel6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- this.ultraPanel7.ClientArea.ResumeLayout(false);
- this.ultraPanel7.ClientArea.PerformLayout();
- this.ultraPanel7.ResumeLayout(false);
- this.ultraPanel3.ClientArea.ResumeLayout(false);
- this.ultraPanel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.kkFILE_PATH1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkCHECK_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkCONNECTION)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkSTEEL_GRADE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_SIZE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkTECHNICAL_STANDARD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.kkTEST_RESULTS)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private Infragistics.Win.Misc.UltraPanel ultraPanel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraCHECK_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraSAMPLE_NAME;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraSAMPLE_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraSTEEL_GRADE_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraSAMPLE_SIZE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTECHNICAL_STANDARD;
- private Infragistics.Win.Misc.UltraPanel ultraPanel2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsFILE_PATH2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsFILE_PATH1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsTEST_RESULTS;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsNOTE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsSTEEL_GRADE_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsSAMPLE_SIZE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsTECHNICAL_STANDARD;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsSAMPLE_NAME;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsSAMPLE_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsCHECK_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel78;
- private Infragistics.Win.Misc.UltraLabel ultraLabel86;
- private Infragistics.Win.Misc.UltraLabel ultraLabel87;
- private Infragistics.Win.Misc.UltraLabel ultraLabel88;
- private Infragistics.Win.Misc.UltraLabel ultraLabel90;
- private Infragistics.Win.Misc.UltraLabel ultraLabel91;
- private Infragistics.Win.Misc.UltraLabel ultraLabel92;
- private Infragistics.Win.Misc.UltraLabel ultraLabel93;
- private Infragistics.Win.Misc.UltraLabel ultraLabel94;
- private Infragistics.Win.Misc.UltraLabel ultraLabel95;
- private Infragistics.Win.Misc.UltraLabel ultraLabel96;
- private Infragistics.Win.Misc.UltraLabel ultraLabel32;
- private Infragistics.Win.Misc.UltraLabel ultraLabel43;
- private Infragistics.Win.Misc.UltraLabel ultraLabel44;
- private Infragistics.Win.Misc.UltraLabel ultraLabel45;
- private Infragistics.Win.Misc.UltraLabel ultraLabel46;
- private Infragistics.Win.Misc.UltraLabel ultraLabel47;
- private Infragistics.Win.Misc.UltraLabel ultraLabel48;
- private Infragistics.Win.Misc.UltraButton ultraButton1;
- private Infragistics.Win.Misc.UltraButton ultraButton2;
- private Infragistics.Win.Misc.UltraPanel ultraPanel3;
- private Infragistics.Win.Misc.UltraButton ultraButton3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor kkCONNECTION;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor kkSTEEL_GRADE_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor kkSAMPLE_SIZE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor kkTECHNICAL_STANDARD;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor kkSAMPLE_NAME;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor kkSAMPLE_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel66;
- private Infragistics.Win.Misc.UltraLabel ultraLabel68;
- private Infragistics.Win.Misc.UltraLabel ultraLabel83;
- private Infragistics.Win.Misc.UltraLabel ultraLabel97;
- private Infragistics.Win.Misc.UltraLabel ultraLabel98;
- private Infragistics.Win.Misc.UltraLabel ultraLabel99;
- private Infragistics.Win.Misc.UltraLabel ultraLabel100;
- private Infragistics.Win.Misc.UltraLabel ultraLabel101;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor kkCHECK_NO;
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.Misc.UltraPanel ultraPanel5;
- private Infragistics.Win.Misc.UltraPanel ultraPanel4;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private System.Data.DataSet dataSet1;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataTable dataTable2;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn20;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH4;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private System.Windows.Forms.Panel panel2;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private Infragistics.Win.Misc.UltraPanel ultraPanel6;
- private Infragistics.Win.Misc.UltraPanel ultraPanel7;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTEST_ITEM;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH7;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private Infragistics.Win.Misc.UltraLabel ultraLabel14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.Misc.UltraLabel ultraLabel12;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsTEST_ITEM;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor lsFILE_PATH3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel16;
- private Infragistics.Win.Misc.UltraLabel ultraLabel18;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor kkFILE_PATH1;
- private System.Data.DataColumn dataColumn23;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTEST_RESULTS;
- private Infragistics.Win.Misc.UltraLabel ultraLabel19;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor kkTEST_RESULTS;
- private Infragistics.Win.Misc.UltraLabel ultraLabel20;
- }
- }
|