123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039 |
-
- namespace PTMedicalInsurance.Forms
- {
- partial class MedInsuQuery
- {
- /// <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()
- {
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle56 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle57 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle61 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle62 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle63 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle64 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle65 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle66 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle67 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle68 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle69 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle70 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle71 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle72 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle73 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle74 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle75 = new System.Windows.Forms.DataGridViewCellStyle();
- this.tbcMain = new Sunny.UI.UITabControl();
- this.tabInHosPerInfoExport = new System.Windows.Forms.TabPage();
- this.dgvSettlRecord = new Sunny.UI.UIDataGridView();
- this.pgSettlRecod = new Sunny.UI.UIPagination();
- this.uiPanel1 = new Sunny.UI.UIPanel();
- this.btnClose = new Sunny.UI.UIButton();
- this.btnQuery = new Sunny.UI.UIButton();
- this.btnPrint = new Sunny.UI.UIButton();
- this.gbDateTime = new Sunny.UI.UIGroupBox();
- this.dpED = new Sunny.UI.UIDatetimePicker();
- this.dpST = new Sunny.UI.UIDatetimePicker();
- this.tP_InsuFeel = new System.Windows.Forms.TabPage();
- this.dgvInsuFeeUpload = new Sunny.UI.UIDataGridView();
- this.uiPanel2 = new Sunny.UI.UIPanel();
- this.cbbOverPrice = new Sunny.UI.UIComboBox();
- this.cbbLevel = new Sunny.UI.UIComboBox();
- this.uiLabel4 = new Sunny.UI.UILabel();
- this.uiLabel3 = new Sunny.UI.UILabel();
- this.tb_SettleID = new Sunny.UI.UITextBox();
- this.tb_InHospNo = new Sunny.UI.UITextBox();
- this.uiLabel2 = new Sunny.UI.UILabel();
- this.uiLabel1 = new Sunny.UI.UILabel();
- this.uiButton1 = new Sunny.UI.UIButton();
- this.btnOK = new Sunny.UI.UIButton();
- this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
- this.dt_ET = new Sunny.UI.UIDatetimePicker();
- this.dt_ST = new Sunny.UI.UIDatetimePicker();
- this.tb_4001 = new System.Windows.Forms.TabPage();
- this.uiTitlePanel1 = new Sunny.UI.UITitlePanel();
- this.dgv_4001 = new Sunny.UI.UIDataGridView();
- this.uiPanel3 = new Sunny.UI.UIPanel();
- this.uiButton19 = new Sunny.UI.UIButton();
- this.tb_CertNo = new Sunny.UI.UITextBox();
- this.uiLabel5 = new Sunny.UI.UILabel();
- this.uiButton4 = new Sunny.UI.UIButton();
- this.uiButton2 = new Sunny.UI.UIButton();
- this.uiButton3 = new Sunny.UI.UIButton();
- this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
- this.DT_ET1 = new Sunny.UI.UIDatetimePicker();
- this.DT_ST1 = new Sunny.UI.UIDatetimePicker();
- this.tab_FeeInfo = new System.Windows.Forms.TabPage();
- this.uiTitlePanel2 = new Sunny.UI.UITitlePanel();
- this.dgvFeeInfo = new Sunny.UI.UIDataGridView();
- this.tt = new Sunny.UI.UITitlePanel();
- this.dgvSettleData = new Sunny.UI.UIDataGridView();
- this.uiPanel4 = new Sunny.UI.UIPanel();
- this.uiButton20 = new Sunny.UI.UIButton();
- this.rbg_Type = new Sunny.UI.UIRadioButtonGroup();
- this.tb_CertNo2 = new Sunny.UI.UITextBox();
- this.uiLabel6 = new Sunny.UI.UILabel();
- this.uiButton5 = new Sunny.UI.UIButton();
- this.uiButton6 = new Sunny.UI.UIButton();
- this.uiButton7 = new Sunny.UI.UIButton();
- this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
- this.dpt_ET = new Sunny.UI.UIDatetimePicker();
- this.dpt_ST = new Sunny.UI.UIDatetimePicker();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.uiTabControl1 = new Sunny.UI.UITabControl();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.uiTitlePanel4 = new Sunny.UI.UITitlePanel();
- this.uiTabControl2 = new Sunny.UI.UITabControl();
- this.tabPage5 = new System.Windows.Forms.TabPage();
- this.dgvData = new Sunny.UI.UIDataGridView();
- this.tabPage6 = new System.Windows.Forms.TabPage();
- this.dgvVerifyResult = new Sunny.UI.UIDataGridView();
- this.tabPage7 = new System.Windows.Forms.TabPage();
- this.dgvTraceCodeVo = new Sunny.UI.UIDataGridView();
- this.tabPage8 = new System.Windows.Forms.TabPage();
- this.dgvMedDrugInfo = new Sunny.UI.UIDataGridView();
- this.uiTitlePanel3 = new Sunny.UI.UITitlePanel();
- this.dgvMedInsuMapRelation = new Sunny.UI.UIDataGridView();
- this.uiPanel5 = new Sunny.UI.UIPanel();
- this.uiButton10 = new Sunny.UI.UIButton();
- this.uiButton8 = new Sunny.UI.UIButton();
- this.uiButton9 = new Sunny.UI.UIButton();
- this.tabPage3 = new System.Windows.Forms.TabPage();
- this.uiTitlePanel6 = new Sunny.UI.UITitlePanel();
- this.dgv_BillDetailInfo = new Sunny.UI.UIDataGridView();
- this.uiTitlePanel5 = new Sunny.UI.UITitlePanel();
- this.dgv_BillInfo = new Sunny.UI.UIDataGridView();
- this.uiPanel7 = new Sunny.UI.UIPanel();
- this.uiButton13 = new Sunny.UI.UIButton();
- this.uiButton14 = new Sunny.UI.UIButton();
- this.uiButton15 = new Sunny.UI.UIButton();
- this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
- this.date_et = new Sunny.UI.UIDatetimePicker();
- this.date_st = new Sunny.UI.UIDatetimePicker();
- this.tabPage4 = new System.Windows.Forms.TabPage();
- this.uiPanel9 = new Sunny.UI.UIPanel();
- this.dtTHSJ = new Sunny.UI.UIDatetimePicker();
- this.tbDJBH = new Sunny.UI.UITextBox();
- this.tbJGBM = new Sunny.UI.UITextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.uiPanel6 = new Sunny.UI.UIPanel();
- this.uiButton11 = new Sunny.UI.UIButton();
- this.uiButton12 = new Sunny.UI.UIButton();
- this.tb_10001 = new System.Windows.Forms.TabPage();
- this.uiTitlePanel8 = new Sunny.UI.UITitlePanel();
- this.dgv_PrescriptionInfo = new Sunny.UI.UIDataGridView();
- this.uiTitlePanel7 = new Sunny.UI.UITitlePanel();
- this.dgv_HISRegInfo = new Sunny.UI.UIDataGridView();
- this.uiPanel8 = new Sunny.UI.UIPanel();
- this.uiButton21 = new Sunny.UI.UIButton();
- this.tb_SFZH = new Sunny.UI.UITextBox();
- this.uiLabel9 = new Sunny.UI.UILabel();
- this.uiButton16 = new Sunny.UI.UIButton();
- this.uiButton17 = new Sunny.UI.UIButton();
- this.uiButton18 = new Sunny.UI.UIButton();
- this.uiGroupBox7 = new Sunny.UI.UIGroupBox();
- this.dtp_et = new Sunny.UI.UIDatetimePicker();
- this.dtp_st = new Sunny.UI.UIDatetimePicker();
- this.tab5205 = new System.Windows.Forms.TabPage();
- this.uiTitlePanel9 = new Sunny.UI.UITitlePanel();
- this.dgv5205 = new Sunny.UI.UIDataGridView();
- this.uiPanel10 = new Sunny.UI.UIPanel();
- this.uiGroupBox5 = new Sunny.UI.UIGroupBox();
- this.dptET = new Sunny.UI.UIDatetimePicker();
- this.dptST = new Sunny.UI.UIDatetimePicker();
- this.btnReadCard = new Sunny.UI.UIButton();
- this.uiButton24 = new Sunny.UI.UIButton();
- this.btn5205 = new Sunny.UI.UIButton();
- this.cbbRYCBLB = new Sunny.UI.UIComboBox();
- this.cbbRYLB = new Sunny.UI.UIComboBox();
- this.tbcMain.SuspendLayout();
- this.tabInHosPerInfoExport.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvSettlRecord)).BeginInit();
- this.uiPanel1.SuspendLayout();
- this.gbDateTime.SuspendLayout();
- this.tP_InsuFeel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvInsuFeeUpload)).BeginInit();
- this.uiPanel2.SuspendLayout();
- this.uiGroupBox1.SuspendLayout();
- this.tb_4001.SuspendLayout();
- this.uiTitlePanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_4001)).BeginInit();
- this.uiPanel3.SuspendLayout();
- this.uiGroupBox2.SuspendLayout();
- this.tab_FeeInfo.SuspendLayout();
- this.uiTitlePanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvFeeInfo)).BeginInit();
- this.tt.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvSettleData)).BeginInit();
- this.uiPanel4.SuspendLayout();
- this.uiGroupBox3.SuspendLayout();
- this.tabPage1.SuspendLayout();
- this.uiTabControl1.SuspendLayout();
- this.tabPage2.SuspendLayout();
- this.uiTitlePanel4.SuspendLayout();
- this.uiTabControl2.SuspendLayout();
- this.tabPage5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
- this.tabPage6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvVerifyResult)).BeginInit();
- this.tabPage7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvTraceCodeVo)).BeginInit();
- this.tabPage8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvMedDrugInfo)).BeginInit();
- this.uiTitlePanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvMedInsuMapRelation)).BeginInit();
- this.uiPanel5.SuspendLayout();
- this.tabPage3.SuspendLayout();
- this.uiTitlePanel6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_BillDetailInfo)).BeginInit();
- this.uiTitlePanel5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_BillInfo)).BeginInit();
- this.uiPanel7.SuspendLayout();
- this.uiGroupBox4.SuspendLayout();
- this.tabPage4.SuspendLayout();
- this.uiPanel9.SuspendLayout();
- this.uiPanel6.SuspendLayout();
- this.tb_10001.SuspendLayout();
- this.uiTitlePanel8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_PrescriptionInfo)).BeginInit();
- this.uiTitlePanel7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_HISRegInfo)).BeginInit();
- this.uiPanel8.SuspendLayout();
- this.uiGroupBox7.SuspendLayout();
- this.tab5205.SuspendLayout();
- this.uiTitlePanel9.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv5205)).BeginInit();
- this.uiPanel10.SuspendLayout();
- this.uiGroupBox5.SuspendLayout();
- this.SuspendLayout();
- //
- // tbcMain
- //
- this.tbcMain.Controls.Add(this.tabInHosPerInfoExport);
- this.tbcMain.Controls.Add(this.tP_InsuFeel);
- this.tbcMain.Controls.Add(this.tb_4001);
- this.tbcMain.Controls.Add(this.tab_FeeInfo);
- this.tbcMain.Controls.Add(this.tabPage1);
- this.tbcMain.Controls.Add(this.tb_10001);
- this.tbcMain.Controls.Add(this.tab5205);
- this.tbcMain.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tbcMain.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.tbcMain.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbcMain.ItemSize = new System.Drawing.Size(220, 40);
- this.tbcMain.Location = new System.Drawing.Point(0, 0);
- this.tbcMain.MainPage = "";
- this.tbcMain.Name = "tbcMain";
- this.tbcMain.SelectedIndex = 0;
- this.tbcMain.Size = new System.Drawing.Size(1368, 797);
- this.tbcMain.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.tbcMain.TabIndex = 6;
- this.tbcMain.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbcMain.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabInHosPerInfoExport
- //
- this.tabInHosPerInfoExport.Controls.Add(this.dgvSettlRecord);
- this.tabInHosPerInfoExport.Controls.Add(this.pgSettlRecod);
- this.tabInHosPerInfoExport.Controls.Add(this.uiPanel1);
- this.tabInHosPerInfoExport.Location = new System.Drawing.Point(0, 40);
- this.tabInHosPerInfoExport.Name = "tabInHosPerInfoExport";
- this.tabInHosPerInfoExport.Size = new System.Drawing.Size(1368, 757);
- this.tabInHosPerInfoExport.TabIndex = 0;
- this.tabInHosPerInfoExport.Text = "在院患者信息导出";
- this.tabInHosPerInfoExport.UseVisualStyleBackColor = true;
- //
- // dgvSettlRecord
- //
- this.dgvSettlRecord.AllowUserToAddRows = false;
- this.dgvSettlRecord.AllowUserToDeleteRows = false;
- dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvSettlRecord.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
- this.dgvSettlRecord.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgvSettlRecord.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgvSettlRecord.BackgroundColor = System.Drawing.Color.White;
- this.dgvSettlRecord.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvSettlRecord.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
- this.dgvSettlRecord.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
- dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvSettlRecord.DefaultCellStyle = dataGridViewCellStyle3;
- this.dgvSettlRecord.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvSettlRecord.EnableHeadersVisualStyles = false;
- this.dgvSettlRecord.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvSettlRecord.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- this.dgvSettlRecord.Location = new System.Drawing.Point(0, 0);
- this.dgvSettlRecord.Name = "dgvSettlRecord";
- dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvSettlRecord.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
- dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvSettlRecord.RowsDefaultCellStyle = dataGridViewCellStyle5;
- this.dgvSettlRecord.RowTemplate.Height = 23;
- this.dgvSettlRecord.SelectedIndex = -1;
- this.dgvSettlRecord.Size = new System.Drawing.Size(1368, 595);
- this.dgvSettlRecord.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvSettlRecord.TabIndex = 9;
- this.dgvSettlRecord.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // pgSettlRecod
- //
- this.pgSettlRecod.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.pgSettlRecod.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.pgSettlRecod.Location = new System.Drawing.Point(0, 595);
- this.pgSettlRecod.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.pgSettlRecod.MinimumSize = new System.Drawing.Size(1, 1);
- this.pgSettlRecod.Name = "pgSettlRecod";
- this.pgSettlRecod.PagerCount = 13;
- this.pgSettlRecod.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
- this.pgSettlRecod.ShowJumpButton = false;
- this.pgSettlRecod.ShowText = false;
- this.pgSettlRecod.Size = new System.Drawing.Size(1368, 31);
- this.pgSettlRecod.TabIndex = 8;
- this.pgSettlRecod.Text = "uiPagination1";
- this.pgSettlRecod.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.pgSettlRecod.Visible = false;
- this.pgSettlRecod.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiPanel1
- //
- this.uiPanel1.Controls.Add(this.btnClose);
- this.uiPanel1.Controls.Add(this.btnQuery);
- this.uiPanel1.Controls.Add(this.btnPrint);
- this.uiPanel1.Controls.Add(this.gbDateTime);
- this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel1.Location = new System.Drawing.Point(0, 626);
- this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel1.Name = "uiPanel1";
- this.uiPanel1.Size = new System.Drawing.Size(1368, 131);
- this.uiPanel1.TabIndex = 10;
- this.uiPanel1.Text = null;
- this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnClose
- //
- this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnClose.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose.Location = new System.Drawing.Point(1227, 40);
- this.btnClose.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnClose.Name = "btnClose";
- this.btnClose.Size = new System.Drawing.Size(134, 67);
- this.btnClose.TabIndex = 26;
- this.btnClose.Text = "退 出";
- this.btnClose.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
- //
- // btnQuery
- //
- this.btnQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.btnQuery.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQuery.Location = new System.Drawing.Point(955, 40);
- this.btnQuery.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnQuery.Name = "btnQuery";
- this.btnQuery.Size = new System.Drawing.Size(134, 67);
- this.btnQuery.TabIndex = 19;
- this.btnQuery.Text = "查 询";
- this.btnQuery.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
- //
- // btnPrint
- //
- this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.btnPrint.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnPrint.Enabled = false;
- this.btnPrint.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPrint.Location = new System.Drawing.Point(1091, 40);
- this.btnPrint.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnPrint.Name = "btnPrint";
- this.btnPrint.Size = new System.Drawing.Size(134, 67);
- this.btnPrint.TabIndex = 18;
- this.btnPrint.Text = "导 出";
- this.btnPrint.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPrint.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
- //
- // gbDateTime
- //
- this.gbDateTime.Controls.Add(this.dpED);
- this.gbDateTime.Controls.Add(this.dpST);
- this.gbDateTime.Dock = System.Windows.Forms.DockStyle.Left;
- this.gbDateTime.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gbDateTime.Location = new System.Drawing.Point(0, 0);
- this.gbDateTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.gbDateTime.MinimumSize = new System.Drawing.Size(1, 1);
- this.gbDateTime.Name = "gbDateTime";
- this.gbDateTime.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.gbDateTime.Size = new System.Drawing.Size(260, 131);
- this.gbDateTime.TabIndex = 20;
- this.gbDateTime.Text = "起止时间";
- this.gbDateTime.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.gbDateTime.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dpED
- //
- this.dpED.FillColor = System.Drawing.Color.White;
- this.dpED.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpED.Location = new System.Drawing.Point(29, 79);
- this.dpED.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpED.MaxLength = 19;
- this.dpED.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpED.Name = "dpED";
- this.dpED.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpED.Size = new System.Drawing.Size(211, 29);
- this.dpED.SymbolDropDown = 61555;
- this.dpED.SymbolNormal = 61555;
- this.dpED.TabIndex = 1;
- this.dpED.Text = "2022-05-22 14:03:13";
- this.dpED.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpED.Value = new System.DateTime(2022, 5, 22, 14, 3, 13, 266);
- this.dpED.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dpST
- //
- this.dpST.FillColor = System.Drawing.Color.White;
- this.dpST.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpST.Location = new System.Drawing.Point(29, 40);
- this.dpST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpST.MaxLength = 19;
- this.dpST.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpST.Name = "dpST";
- this.dpST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpST.Size = new System.Drawing.Size(211, 29);
- this.dpST.SymbolDropDown = 61555;
- this.dpST.SymbolNormal = 61555;
- this.dpST.TabIndex = 0;
- this.dpST.Text = "2022-05-22 14:03:13";
- this.dpST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpST.Value = new System.DateTime(2022, 5, 22, 14, 3, 13, 266);
- this.dpST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tP_InsuFeel
- //
- this.tP_InsuFeel.Controls.Add(this.dgvInsuFeeUpload);
- this.tP_InsuFeel.Controls.Add(this.uiPanel2);
- this.tP_InsuFeel.Location = new System.Drawing.Point(0, 40);
- this.tP_InsuFeel.Name = "tP_InsuFeel";
- this.tP_InsuFeel.Size = new System.Drawing.Size(1368, 757);
- this.tP_InsuFeel.TabIndex = 1;
- this.tP_InsuFeel.Text = "医保患者费用明细信息查询";
- this.tP_InsuFeel.UseVisualStyleBackColor = true;
- //
- // dgvInsuFeeUpload
- //
- this.dgvInsuFeeUpload.AllowUserToAddRows = false;
- this.dgvInsuFeeUpload.AllowUserToDeleteRows = false;
- dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvInsuFeeUpload.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle6;
- this.dgvInsuFeeUpload.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgvInsuFeeUpload.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgvInsuFeeUpload.BackgroundColor = System.Drawing.Color.White;
- this.dgvInsuFeeUpload.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle7.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvInsuFeeUpload.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
- this.dgvInsuFeeUpload.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.ControlText;
- dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvInsuFeeUpload.DefaultCellStyle = dataGridViewCellStyle8;
- this.dgvInsuFeeUpload.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvInsuFeeUpload.EnableHeadersVisualStyles = false;
- this.dgvInsuFeeUpload.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvInsuFeeUpload.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- this.dgvInsuFeeUpload.Location = new System.Drawing.Point(0, 0);
- this.dgvInsuFeeUpload.Name = "dgvInsuFeeUpload";
- dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle9.SelectionForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvInsuFeeUpload.RowHeadersDefaultCellStyle = dataGridViewCellStyle9;
- dataGridViewCellStyle10.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvInsuFeeUpload.RowsDefaultCellStyle = dataGridViewCellStyle10;
- this.dgvInsuFeeUpload.RowTemplate.Height = 23;
- this.dgvInsuFeeUpload.SelectedIndex = -1;
- this.dgvInsuFeeUpload.Size = new System.Drawing.Size(1368, 642);
- this.dgvInsuFeeUpload.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvInsuFeeUpload.TabIndex = 11;
- this.dgvInsuFeeUpload.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiPanel2
- //
- this.uiPanel2.Controls.Add(this.cbbOverPrice);
- this.uiPanel2.Controls.Add(this.cbbLevel);
- this.uiPanel2.Controls.Add(this.uiLabel4);
- this.uiPanel2.Controls.Add(this.uiLabel3);
- this.uiPanel2.Controls.Add(this.tb_SettleID);
- this.uiPanel2.Controls.Add(this.tb_InHospNo);
- this.uiPanel2.Controls.Add(this.uiLabel2);
- this.uiPanel2.Controls.Add(this.uiLabel1);
- this.uiPanel2.Controls.Add(this.uiButton1);
- this.uiPanel2.Controls.Add(this.btnOK);
- this.uiPanel2.Controls.Add(this.uiGroupBox1);
- this.uiPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel2.Location = new System.Drawing.Point(0, 642);
- this.uiPanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel2.Name = "uiPanel2";
- this.uiPanel2.Size = new System.Drawing.Size(1368, 115);
- this.uiPanel2.TabIndex = 12;
- this.uiPanel2.Text = null;
- this.uiPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbbOverPrice
- //
- this.cbbOverPrice.DataSource = null;
- this.cbbOverPrice.FillColor = System.Drawing.Color.White;
- this.cbbOverPrice.FilterMaxCount = 50;
- this.cbbOverPrice.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbbOverPrice.Items.AddRange(new object[] {
- "全部",
- "是",
- "否"});
- this.cbbOverPrice.Location = new System.Drawing.Point(378, 66);
- this.cbbOverPrice.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbbOverPrice.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbbOverPrice.Name = "cbbOverPrice";
- this.cbbOverPrice.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbbOverPrice.Size = new System.Drawing.Size(196, 29);
- this.cbbOverPrice.TabIndex = 34;
- this.cbbOverPrice.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbbOverPrice.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbbLevel
- //
- this.cbbLevel.DataSource = null;
- this.cbbLevel.FillColor = System.Drawing.Color.White;
- this.cbbLevel.FilterMaxCount = 50;
- this.cbbLevel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbbLevel.Items.AddRange(new object[] {
- "全部",
- "甲类",
- "乙类",
- "丙类"});
- this.cbbLevel.Location = new System.Drawing.Point(378, 27);
- this.cbbLevel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbbLevel.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbbLevel.Name = "cbbLevel";
- this.cbbLevel.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbbLevel.Size = new System.Drawing.Size(196, 29);
- this.cbbLevel.TabIndex = 33;
- this.cbbLevel.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbbLevel.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel4
- //
- this.uiLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel4.Location = new System.Drawing.Point(285, 69);
- this.uiLabel4.Name = "uiLabel4";
- this.uiLabel4.Size = new System.Drawing.Size(86, 23);
- this.uiLabel4.TabIndex = 32;
- this.uiLabel4.Text = "超限价:";
- this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel3
- //
- this.uiLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel3.Location = new System.Drawing.Point(285, 30);
- this.uiLabel3.Name = "uiLabel3";
- this.uiLabel3.Size = new System.Drawing.Size(86, 23);
- this.uiLabel3.TabIndex = 31;
- this.uiLabel3.Text = "目录等级:";
- this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_SettleID
- //
- this.tb_SettleID.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tb_SettleID.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tb_SettleID.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tb_SettleID.Location = new System.Drawing.Point(707, 66);
- this.tb_SettleID.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tb_SettleID.MinimumSize = new System.Drawing.Size(1, 16);
- this.tb_SettleID.Name = "tb_SettleID";
- this.tb_SettleID.ShowText = false;
- this.tb_SettleID.Size = new System.Drawing.Size(199, 29);
- this.tb_SettleID.TabIndex = 30;
- this.tb_SettleID.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tb_SettleID.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_InHospNo
- //
- this.tb_InHospNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tb_InHospNo.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tb_InHospNo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tb_InHospNo.Location = new System.Drawing.Point(707, 27);
- this.tb_InHospNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tb_InHospNo.MinimumSize = new System.Drawing.Size(1, 16);
- this.tb_InHospNo.Name = "tb_InHospNo";
- this.tb_InHospNo.ShowText = false;
- this.tb_InHospNo.Size = new System.Drawing.Size(199, 29);
- this.tb_InHospNo.TabIndex = 29;
- this.tb_InHospNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tb_InHospNo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel2
- //
- this.uiLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel2.Location = new System.Drawing.Point(605, 69);
- this.uiLabel2.Name = "uiLabel2";
- this.uiLabel2.Size = new System.Drawing.Size(98, 23);
- this.uiLabel2.TabIndex = 28;
- this.uiLabel2.Text = "医保结算ID:";
- this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel1
- //
- this.uiLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel1.Location = new System.Drawing.Point(605, 30);
- this.uiLabel1.Name = "uiLabel1";
- this.uiLabel1.Size = new System.Drawing.Size(98, 23);
- this.uiLabel1.TabIndex = 27;
- this.uiLabel1.Text = "HIS住院号:";
- this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton1
- //
- this.uiButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton1.Location = new System.Drawing.Point(1226, 26);
- this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton1.Name = "uiButton1";
- this.uiButton1.Size = new System.Drawing.Size(134, 67);
- this.uiButton1.TabIndex = 26;
- this.uiButton1.Text = "退 出";
- this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton1.Click += new System.EventHandler(this.btnClose_Click);
- //
- // btnOK
- //
- this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnOK.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnOK.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnOK.Location = new System.Drawing.Point(1085, 26);
- this.btnOK.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnOK.Name = "btnOK";
- this.btnOK.Size = new System.Drawing.Size(134, 67);
- this.btnOK.TabIndex = 19;
- this.btnOK.Text = "查 询";
- this.btnOK.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnOK.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
- //
- // uiGroupBox1
- //
- this.uiGroupBox1.Controls.Add(this.dt_ET);
- this.uiGroupBox1.Controls.Add(this.dt_ST);
- this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox1.Name = "uiGroupBox1";
- this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox1.Size = new System.Drawing.Size(260, 115);
- this.uiGroupBox1.TabIndex = 20;
- this.uiGroupBox1.Text = "起止时间";
- this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dt_ET
- //
- this.dt_ET.FillColor = System.Drawing.Color.White;
- this.dt_ET.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dt_ET.Location = new System.Drawing.Point(29, 71);
- this.dt_ET.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dt_ET.MaxLength = 19;
- this.dt_ET.MinimumSize = new System.Drawing.Size(63, 0);
- this.dt_ET.Name = "dt_ET";
- this.dt_ET.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dt_ET.Size = new System.Drawing.Size(211, 29);
- this.dt_ET.SymbolDropDown = 61555;
- this.dt_ET.SymbolNormal = 61555;
- this.dt_ET.TabIndex = 1;
- this.dt_ET.Text = "2022-05-22 14:03:13";
- this.dt_ET.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dt_ET.Value = new System.DateTime(2022, 5, 22, 14, 3, 13, 266);
- this.dt_ET.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dt_ST
- //
- this.dt_ST.FillColor = System.Drawing.Color.White;
- this.dt_ST.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dt_ST.Location = new System.Drawing.Point(29, 32);
- this.dt_ST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dt_ST.MaxLength = 19;
- this.dt_ST.MinimumSize = new System.Drawing.Size(63, 0);
- this.dt_ST.Name = "dt_ST";
- this.dt_ST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dt_ST.Size = new System.Drawing.Size(211, 29);
- this.dt_ST.SymbolDropDown = 61555;
- this.dt_ST.SymbolNormal = 61555;
- this.dt_ST.TabIndex = 0;
- this.dt_ST.Text = "2022-05-22 14:03:13";
- this.dt_ST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dt_ST.Value = new System.DateTime(2022, 5, 22, 14, 3, 13, 266);
- this.dt_ST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_4001
- //
- this.tb_4001.Controls.Add(this.uiTitlePanel1);
- this.tb_4001.Controls.Add(this.uiPanel3);
- this.tb_4001.Location = new System.Drawing.Point(0, 40);
- this.tb_4001.Name = "tb_4001";
- this.tb_4001.Size = new System.Drawing.Size(1368, 757);
- this.tb_4001.TabIndex = 2;
- this.tb_4001.Text = "患者参保信息上传";
- this.tb_4001.UseVisualStyleBackColor = true;
- //
- // uiTitlePanel1
- //
- this.uiTitlePanel1.Controls.Add(this.dgv_4001);
- this.uiTitlePanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTitlePanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTitlePanel1.Location = new System.Drawing.Point(0, 0);
- this.uiTitlePanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTitlePanel1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiTitlePanel1.Name = "uiTitlePanel1";
- this.uiTitlePanel1.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
- this.uiTitlePanel1.ShowText = false;
- this.uiTitlePanel1.Size = new System.Drawing.Size(1368, 642);
- this.uiTitlePanel1.TabIndex = 15;
- this.uiTitlePanel1.Text = "4001-患者参保信息";
- this.uiTitlePanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiTitlePanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv_4001
- //
- this.dgv_4001.AllowUserToAddRows = false;
- this.dgv_4001.AllowUserToDeleteRows = false;
- dataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_4001.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle11;
- this.dgv_4001.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgv_4001.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgv_4001.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_4001.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle12.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle12.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_4001.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle12;
- this.dgv_4001.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle13.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle13.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle13.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_4001.DefaultCellStyle = dataGridViewCellStyle13;
- this.dgv_4001.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_4001.EnableHeadersVisualStyles = false;
- this.dgv_4001.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_4001.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_4001.Location = new System.Drawing.Point(0, 35);
- this.dgv_4001.Name = "dgv_4001";
- dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle14.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle14.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_4001.RowHeadersDefaultCellStyle = dataGridViewCellStyle14;
- dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle15.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle15.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_4001.RowsDefaultCellStyle = dataGridViewCellStyle15;
- this.dgv_4001.RowTemplate.Height = 23;
- this.dgv_4001.SelectedIndex = -1;
- this.dgv_4001.Size = new System.Drawing.Size(1368, 607);
- this.dgv_4001.TabIndex = 14;
- this.dgv_4001.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiPanel3
- //
- this.uiPanel3.Controls.Add(this.uiButton19);
- this.uiPanel3.Controls.Add(this.tb_CertNo);
- this.uiPanel3.Controls.Add(this.uiLabel5);
- this.uiPanel3.Controls.Add(this.uiButton4);
- this.uiPanel3.Controls.Add(this.uiButton2);
- this.uiPanel3.Controls.Add(this.uiButton3);
- this.uiPanel3.Controls.Add(this.uiGroupBox2);
- this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel3.Location = new System.Drawing.Point(0, 642);
- this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel3.Name = "uiPanel3";
- this.uiPanel3.Size = new System.Drawing.Size(1368, 115);
- this.uiPanel3.TabIndex = 14;
- this.uiPanel3.Text = null;
- this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton19
- //
- this.uiButton19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton19.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton19.Location = new System.Drawing.Point(1134, 26);
- this.uiButton19.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton19.Name = "uiButton19";
- this.uiButton19.Size = new System.Drawing.Size(110, 67);
- this.uiButton19.TabIndex = 33;
- this.uiButton19.Text = "全部上传";
- this.uiButton19.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton19.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton19.Click += new System.EventHandler(this.uiButton19_Click);
- //
- // tb_CertNo
- //
- this.tb_CertNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tb_CertNo.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tb_CertNo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tb_CertNo.Location = new System.Drawing.Point(295, 58);
- this.tb_CertNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tb_CertNo.MinimumSize = new System.Drawing.Size(1, 16);
- this.tb_CertNo.Name = "tb_CertNo";
- this.tb_CertNo.ShowText = false;
- this.tb_CertNo.Size = new System.Drawing.Size(199, 29);
- this.tb_CertNo.TabIndex = 32;
- this.tb_CertNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tb_CertNo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel5
- //
- this.uiLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel5.Location = new System.Drawing.Point(295, 22);
- this.uiLabel5.Name = "uiLabel5";
- this.uiLabel5.Size = new System.Drawing.Size(82, 23);
- this.uiLabel5.TabIndex = 31;
- this.uiLabel5.Text = "身份证号:";
- this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton4
- //
- this.uiButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton4.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton4.Location = new System.Drawing.Point(1023, 26);
- this.uiButton4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton4.Name = "uiButton4";
- this.uiButton4.Size = new System.Drawing.Size(110, 67);
- this.uiButton4.TabIndex = 27;
- this.uiButton4.Text = "上 传";
- this.uiButton4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton4.Click += new System.EventHandler(this.uiButton4_Click);
- //
- // uiButton2
- //
- this.uiButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton2.Location = new System.Drawing.Point(1245, 26);
- this.uiButton2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton2.Name = "uiButton2";
- this.uiButton2.Size = new System.Drawing.Size(110, 67);
- this.uiButton2.TabIndex = 26;
- this.uiButton2.Text = "退 出";
- this.uiButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton2.Click += new System.EventHandler(this.btnClose_Click);
- //
- // uiButton3
- //
- this.uiButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton3.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton3.Location = new System.Drawing.Point(912, 26);
- this.uiButton3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton3.Name = "uiButton3";
- this.uiButton3.Size = new System.Drawing.Size(110, 67);
- this.uiButton3.TabIndex = 19;
- this.uiButton3.Text = "查 询";
- this.uiButton3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton3.Click += new System.EventHandler(this.uiButton3_Click);
- //
- // uiGroupBox2
- //
- this.uiGroupBox2.Controls.Add(this.DT_ET1);
- this.uiGroupBox2.Controls.Add(this.DT_ST1);
- this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiGroupBox2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox2.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox2.Name = "uiGroupBox2";
- this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox2.Size = new System.Drawing.Size(269, 115);
- this.uiGroupBox2.TabIndex = 20;
- this.uiGroupBox2.Text = "起止时间";
- this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // DT_ET1
- //
- this.DT_ET1.FillColor = System.Drawing.Color.White;
- this.DT_ET1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.DT_ET1.Location = new System.Drawing.Point(25, 71);
- this.DT_ET1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.DT_ET1.MaxLength = 19;
- this.DT_ET1.MinimumSize = new System.Drawing.Size(63, 0);
- this.DT_ET1.Name = "DT_ET1";
- this.DT_ET1.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.DT_ET1.Size = new System.Drawing.Size(224, 29);
- this.DT_ET1.SymbolDropDown = 61555;
- this.DT_ET1.SymbolNormal = 61555;
- this.DT_ET1.TabIndex = 1;
- this.DT_ET1.Text = "2022-05-22 14:03:13";
- this.DT_ET1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.DT_ET1.Value = new System.DateTime(2022, 5, 22, 14, 3, 13, 266);
- this.DT_ET1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // DT_ST1
- //
- this.DT_ST1.FillColor = System.Drawing.Color.White;
- this.DT_ST1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.DT_ST1.Location = new System.Drawing.Point(25, 32);
- this.DT_ST1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.DT_ST1.MaxLength = 19;
- this.DT_ST1.MinimumSize = new System.Drawing.Size(63, 0);
- this.DT_ST1.Name = "DT_ST1";
- this.DT_ST1.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.DT_ST1.Size = new System.Drawing.Size(224, 29);
- this.DT_ST1.SymbolDropDown = 61555;
- this.DT_ST1.SymbolNormal = 61555;
- this.DT_ST1.TabIndex = 0;
- this.DT_ST1.Text = "2022-05-22 14:03:13";
- this.DT_ST1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.DT_ST1.Value = new System.DateTime(2022, 5, 22, 14, 3, 13, 266);
- this.DT_ST1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tab_FeeInfo
- //
- this.tab_FeeInfo.Controls.Add(this.uiTitlePanel2);
- this.tab_FeeInfo.Controls.Add(this.tt);
- this.tab_FeeInfo.Controls.Add(this.uiPanel4);
- this.tab_FeeInfo.Location = new System.Drawing.Point(0, 40);
- this.tab_FeeInfo.Name = "tab_FeeInfo";
- this.tab_FeeInfo.Size = new System.Drawing.Size(1368, 757);
- this.tab_FeeInfo.TabIndex = 3;
- this.tab_FeeInfo.Text = "患者费用信息上传";
- this.tab_FeeInfo.UseVisualStyleBackColor = true;
- //
- // uiTitlePanel2
- //
- this.uiTitlePanel2.Controls.Add(this.dgvFeeInfo);
- this.uiTitlePanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTitlePanel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTitlePanel2.Location = new System.Drawing.Point(0, 504);
- this.uiTitlePanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTitlePanel2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiTitlePanel2.Name = "uiTitlePanel2";
- this.uiTitlePanel2.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
- this.uiTitlePanel2.ShowText = false;
- this.uiTitlePanel2.Size = new System.Drawing.Size(1368, 141);
- this.uiTitlePanel2.TabIndex = 18;
- this.uiTitlePanel2.Text = "结算费用明细信息(4303、4403、4801、4802)";
- this.uiTitlePanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiTitlePanel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgvFeeInfo
- //
- this.dgvFeeInfo.AllowUserToAddRows = false;
- this.dgvFeeInfo.AllowUserToDeleteRows = false;
- dataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvFeeInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle16;
- this.dgvFeeInfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgvFeeInfo.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgvFeeInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvFeeInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle17.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle17.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvFeeInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle17;
- this.dgvFeeInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle18.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle18.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle18.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvFeeInfo.DefaultCellStyle = dataGridViewCellStyle18;
- this.dgvFeeInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvFeeInfo.EnableHeadersVisualStyles = false;
- this.dgvFeeInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvFeeInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvFeeInfo.Location = new System.Drawing.Point(0, 35);
- this.dgvFeeInfo.Name = "dgvFeeInfo";
- dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle19.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle19.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvFeeInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle19;
- dataGridViewCellStyle20.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle20.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle20.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvFeeInfo.RowsDefaultCellStyle = dataGridViewCellStyle20;
- this.dgvFeeInfo.RowTemplate.Height = 23;
- this.dgvFeeInfo.SelectedIndex = -1;
- this.dgvFeeInfo.Size = new System.Drawing.Size(1368, 106);
- this.dgvFeeInfo.TabIndex = 17;
- this.dgvFeeInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tt
- //
- this.tt.Controls.Add(this.dgvSettleData);
- this.tt.Dock = System.Windows.Forms.DockStyle.Top;
- this.tt.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tt.Location = new System.Drawing.Point(0, 0);
- this.tt.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tt.MinimumSize = new System.Drawing.Size(1, 1);
- this.tt.Name = "tt";
- this.tt.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
- this.tt.ShowText = false;
- this.tt.Size = new System.Drawing.Size(1368, 504);
- this.tt.TabIndex = 17;
- this.tt.Text = "医保结算信息(单击查看明细信息、双击上传)";
- this.tt.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.tt.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgvSettleData
- //
- this.dgvSettleData.AllowUserToAddRows = false;
- this.dgvSettleData.AllowUserToDeleteRows = false;
- dataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvSettleData.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle21;
- this.dgvSettleData.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgvSettleData.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgvSettleData.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvSettleData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle22.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle22.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle22.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle22.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle22.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvSettleData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle22;
- this.dgvSettleData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle23.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle23.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle23.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle23.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle23.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvSettleData.DefaultCellStyle = dataGridViewCellStyle23;
- this.dgvSettleData.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvSettleData.EnableHeadersVisualStyles = false;
- this.dgvSettleData.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvSettleData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvSettleData.Location = new System.Drawing.Point(0, 35);
- this.dgvSettleData.Name = "dgvSettleData";
- dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle24.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle24.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle24.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle24.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvSettleData.RowHeadersDefaultCellStyle = dataGridViewCellStyle24;
- dataGridViewCellStyle25.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle25.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle25.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvSettleData.RowsDefaultCellStyle = dataGridViewCellStyle25;
- this.dgvSettleData.RowTemplate.Height = 23;
- this.dgvSettleData.SelectedIndex = -1;
- this.dgvSettleData.Size = new System.Drawing.Size(1368, 469);
- this.dgvSettleData.TabIndex = 17;
- this.dgvSettleData.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.dgvSettleData.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvSettleData_CellClick);
- this.dgvSettleData.DoubleClick += new System.EventHandler(this.dgvSettleData_DoubleClick);
- //
- // uiPanel4
- //
- this.uiPanel4.Controls.Add(this.uiButton20);
- this.uiPanel4.Controls.Add(this.rbg_Type);
- this.uiPanel4.Controls.Add(this.tb_CertNo2);
- this.uiPanel4.Controls.Add(this.uiLabel6);
- this.uiPanel4.Controls.Add(this.uiButton5);
- this.uiPanel4.Controls.Add(this.uiButton6);
- this.uiPanel4.Controls.Add(this.uiButton7);
- this.uiPanel4.Controls.Add(this.uiGroupBox3);
- this.uiPanel4.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel4.Location = new System.Drawing.Point(0, 645);
- this.uiPanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel4.Name = "uiPanel4";
- this.uiPanel4.Size = new System.Drawing.Size(1368, 112);
- this.uiPanel4.TabIndex = 15;
- this.uiPanel4.Text = null;
- this.uiPanel4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton20
- //
- this.uiButton20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton20.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton20.Location = new System.Drawing.Point(1143, 24);
- this.uiButton20.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton20.Name = "uiButton20";
- this.uiButton20.Size = new System.Drawing.Size(110, 67);
- this.uiButton20.TabIndex = 34;
- this.uiButton20.Text = "全部上传";
- this.uiButton20.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton20.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton20.Click += new System.EventHandler(this.uiButton20_Click);
- //
- // rbg_Type
- //
- this.rbg_Type.ColumnCount = 2;
- this.rbg_Type.Dock = System.Windows.Forms.DockStyle.Left;
- this.rbg_Type.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.rbg_Type.Items.AddRange(new object[] {
- "4303-门诊费用明细",
- "4403-住院费用明细",
- "4801-住院结算费用明细",
- "4802-门诊结算费用明细"});
- this.rbg_Type.ItemSize = new System.Drawing.Size(210, 35);
- this.rbg_Type.Location = new System.Drawing.Point(269, 0);
- this.rbg_Type.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.rbg_Type.MinimumSize = new System.Drawing.Size(1, 1);
- this.rbg_Type.Name = "rbg_Type";
- this.rbg_Type.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.rbg_Type.Size = new System.Drawing.Size(428, 112);
- this.rbg_Type.TabIndex = 33;
- this.rbg_Type.Text = "业务类型";
- this.rbg_Type.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.rbg_Type.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.rbg_Type.ValueChanged += new Sunny.UI.UIRadioButtonGroup.OnValueChanged(this.rbg_Type_ValueChanged);
- //
- // tb_CertNo2
- //
- this.tb_CertNo2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tb_CertNo2.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tb_CertNo2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tb_CertNo2.Location = new System.Drawing.Point(705, 47);
- this.tb_CertNo2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tb_CertNo2.MinimumSize = new System.Drawing.Size(1, 16);
- this.tb_CertNo2.Name = "tb_CertNo2";
- this.tb_CertNo2.ShowText = false;
- this.tb_CertNo2.Size = new System.Drawing.Size(192, 29);
- this.tb_CertNo2.TabIndex = 32;
- this.tb_CertNo2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tb_CertNo2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel6
- //
- this.uiLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel6.Location = new System.Drawing.Point(705, 19);
- this.uiLabel6.Name = "uiLabel6";
- this.uiLabel6.Size = new System.Drawing.Size(82, 23);
- this.uiLabel6.TabIndex = 31;
- this.uiLabel6.Text = "身份证号:";
- this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton5
- //
- this.uiButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton5.Location = new System.Drawing.Point(1032, 24);
- this.uiButton5.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton5.Name = "uiButton5";
- this.uiButton5.Size = new System.Drawing.Size(110, 67);
- this.uiButton5.TabIndex = 27;
- this.uiButton5.Text = "上 传";
- this.uiButton5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton5.Click += new System.EventHandler(this.uiButton5_Click);
- //
- // uiButton6
- //
- this.uiButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton6.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton6.Location = new System.Drawing.Point(1254, 24);
- this.uiButton6.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton6.Name = "uiButton6";
- this.uiButton6.Size = new System.Drawing.Size(110, 67);
- this.uiButton6.TabIndex = 26;
- this.uiButton6.Text = "退 出";
- this.uiButton6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton6.Click += new System.EventHandler(this.btnClose_Click);
- //
- // uiButton7
- //
- this.uiButton7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton7.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton7.Location = new System.Drawing.Point(921, 24);
- this.uiButton7.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton7.Name = "uiButton7";
- this.uiButton7.Size = new System.Drawing.Size(110, 67);
- this.uiButton7.TabIndex = 19;
- this.uiButton7.Text = "查 询";
- this.uiButton7.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton7.Click += new System.EventHandler(this.uiButton7_Click);
- //
- // uiGroupBox3
- //
- this.uiGroupBox3.Controls.Add(this.dpt_ET);
- this.uiGroupBox3.Controls.Add(this.dpt_ST);
- this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox3.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox3.Name = "uiGroupBox3";
- this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox3.Size = new System.Drawing.Size(269, 112);
- this.uiGroupBox3.TabIndex = 20;
- this.uiGroupBox3.Text = "起止时间";
- this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dpt_ET
- //
- this.dpt_ET.FillColor = System.Drawing.Color.White;
- this.dpt_ET.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpt_ET.Location = new System.Drawing.Point(24, 69);
- this.dpt_ET.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpt_ET.MaxLength = 19;
- this.dpt_ET.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpt_ET.Name = "dpt_ET";
- this.dpt_ET.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpt_ET.Size = new System.Drawing.Size(224, 29);
- this.dpt_ET.SymbolDropDown = 61555;
- this.dpt_ET.SymbolNormal = 61555;
- this.dpt_ET.TabIndex = 1;
- this.dpt_ET.Text = "2022-05-22 14:03:13";
- this.dpt_ET.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpt_ET.Value = new System.DateTime(2022, 5, 22, 14, 3, 13, 266);
- this.dpt_ET.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dpt_ST
- //
- this.dpt_ST.FillColor = System.Drawing.Color.White;
- this.dpt_ST.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpt_ST.Location = new System.Drawing.Point(24, 30);
- this.dpt_ST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpt_ST.MaxLength = 19;
- this.dpt_ST.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpt_ST.Name = "dpt_ST";
- this.dpt_ST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpt_ST.Size = new System.Drawing.Size(224, 29);
- this.dpt_ST.SymbolDropDown = 61555;
- this.dpt_ST.SymbolNormal = 61555;
- this.dpt_ST.TabIndex = 0;
- this.dpt_ST.Text = "2022-05-22 14:03:13";
- this.dpt_ST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpt_ST.Value = new System.DateTime(2022, 5, 22, 14, 3, 13, 266);
- this.dpt_ST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.uiTabControl1);
- this.tabPage1.Location = new System.Drawing.Point(0, 40);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Size = new System.Drawing.Size(1368, 757);
- this.tabPage1.TabIndex = 4;
- this.tabPage1.Text = "医保药品鉴核数据采集上传";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // uiTabControl1
- //
- this.uiTabControl1.Controls.Add(this.tabPage2);
- this.uiTabControl1.Controls.Add(this.tabPage3);
- this.uiTabControl1.Controls.Add(this.tabPage4);
- this.uiTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl1.ItemSize = new System.Drawing.Size(270, 40);
- this.uiTabControl1.Location = new System.Drawing.Point(0, 0);
- this.uiTabControl1.MainPage = "";
- this.uiTabControl1.Name = "uiTabControl1";
- this.uiTabControl1.SelectedIndex = 0;
- this.uiTabControl1.Size = new System.Drawing.Size(1368, 757);
- this.uiTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl1.TabIndex = 0;
- this.uiTabControl1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.uiTitlePanel4);
- this.tabPage2.Controls.Add(this.uiTitlePanel3);
- this.tabPage2.Controls.Add(this.uiPanel5);
- this.tabPage2.Location = new System.Drawing.Point(0, 40);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Size = new System.Drawing.Size(1368, 717);
- this.tabPage2.TabIndex = 0;
- this.tabPage2.Text = "【20001】事前鉴核服务";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // uiTitlePanel4
- //
- this.uiTitlePanel4.Controls.Add(this.uiTabControl2);
- this.uiTitlePanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTitlePanel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTitlePanel4.Location = new System.Drawing.Point(0, 378);
- this.uiTitlePanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTitlePanel4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiTitlePanel4.Name = "uiTitlePanel4";
- this.uiTitlePanel4.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
- this.uiTitlePanel4.ShowText = false;
- this.uiTitlePanel4.Size = new System.Drawing.Size(1368, 266);
- this.uiTitlePanel4.TabIndex = 17;
- this.uiTitlePanel4.Text = "返回值信息";
- this.uiTitlePanel4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiTitlePanel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTabControl2
- //
- this.uiTabControl2.Controls.Add(this.tabPage5);
- this.uiTabControl2.Controls.Add(this.tabPage6);
- this.uiTabControl2.Controls.Add(this.tabPage7);
- this.uiTabControl2.Controls.Add(this.tabPage8);
- this.uiTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl2.ItemSize = new System.Drawing.Size(210, 40);
- this.uiTabControl2.Location = new System.Drawing.Point(0, 35);
- this.uiTabControl2.MainPage = "";
- this.uiTabControl2.Name = "uiTabControl2";
- this.uiTabControl2.SelectedIndex = 0;
- this.uiTabControl2.Size = new System.Drawing.Size(1368, 231);
- this.uiTabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl2.TabIndex = 0;
- this.uiTabControl2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage5
- //
- this.tabPage5.Controls.Add(this.dgvData);
- this.tabPage5.Location = new System.Drawing.Point(0, 40);
- this.tabPage5.Name = "tabPage5";
- this.tabPage5.Size = new System.Drawing.Size(1368, 191);
- this.tabPage5.TabIndex = 0;
- this.tabPage5.Text = "提示信息-data";
- this.tabPage5.UseVisualStyleBackColor = true;
- //
- // dgvData
- //
- this.dgvData.AllowUserToAddRows = false;
- this.dgvData.AllowUserToDeleteRows = false;
- dataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvData.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle26;
- this.dgvData.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgvData.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgvData.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle27.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle27.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle27.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle27.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle27;
- this.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle28.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle28.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle28.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle28.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvData.DefaultCellStyle = dataGridViewCellStyle28;
- this.dgvData.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvData.EnableHeadersVisualStyles = false;
- this.dgvData.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvData.Location = new System.Drawing.Point(0, 0);
- this.dgvData.Name = "dgvData";
- dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle29.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle29.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle29.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle29.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvData.RowHeadersDefaultCellStyle = dataGridViewCellStyle29;
- dataGridViewCellStyle30.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle30.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle30.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle30.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvData.RowsDefaultCellStyle = dataGridViewCellStyle30;
- this.dgvData.RowTemplate.Height = 23;
- this.dgvData.SelectedIndex = -1;
- this.dgvData.Size = new System.Drawing.Size(1368, 191);
- this.dgvData.TabIndex = 15;
- this.dgvData.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage6
- //
- this.tabPage6.Controls.Add(this.dgvVerifyResult);
- this.tabPage6.Location = new System.Drawing.Point(0, 40);
- this.tabPage6.Name = "tabPage6";
- this.tabPage6.Size = new System.Drawing.Size(200, 0);
- this.tabPage6.TabIndex = 1;
- this.tabPage6.Text = "提示信息-verifyResult";
- this.tabPage6.UseVisualStyleBackColor = true;
- //
- // dgvVerifyResult
- //
- this.dgvVerifyResult.AllowUserToAddRows = false;
- this.dgvVerifyResult.AllowUserToDeleteRows = false;
- dataGridViewCellStyle31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvVerifyResult.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle31;
- this.dgvVerifyResult.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgvVerifyResult.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgvVerifyResult.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvVerifyResult.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle32.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle32.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle32.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle32.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle32.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvVerifyResult.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle32;
- this.dgvVerifyResult.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle33.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle33.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle33.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle33.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle33.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvVerifyResult.DefaultCellStyle = dataGridViewCellStyle33;
- this.dgvVerifyResult.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvVerifyResult.EnableHeadersVisualStyles = false;
- this.dgvVerifyResult.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvVerifyResult.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvVerifyResult.Location = new System.Drawing.Point(0, 0);
- this.dgvVerifyResult.Name = "dgvVerifyResult";
- dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle34.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle34.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle34.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle34.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvVerifyResult.RowHeadersDefaultCellStyle = dataGridViewCellStyle34;
- dataGridViewCellStyle35.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle35.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle35.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle35.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvVerifyResult.RowsDefaultCellStyle = dataGridViewCellStyle35;
- this.dgvVerifyResult.RowTemplate.Height = 23;
- this.dgvVerifyResult.SelectedIndex = -1;
- this.dgvVerifyResult.Size = new System.Drawing.Size(200, 0);
- this.dgvVerifyResult.TabIndex = 15;
- this.dgvVerifyResult.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage7
- //
- this.tabPage7.Controls.Add(this.dgvTraceCodeVo);
- this.tabPage7.Location = new System.Drawing.Point(0, 40);
- this.tabPage7.Name = "tabPage7";
- this.tabPage7.Size = new System.Drawing.Size(200, 0);
- this.tabPage7.TabIndex = 2;
- this.tabPage7.Text = "提示信息-traceCodeVo";
- this.tabPage7.UseVisualStyleBackColor = true;
- //
- // dgvTraceCodeVo
- //
- this.dgvTraceCodeVo.AllowUserToAddRows = false;
- this.dgvTraceCodeVo.AllowUserToDeleteRows = false;
- dataGridViewCellStyle36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvTraceCodeVo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle36;
- this.dgvTraceCodeVo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgvTraceCodeVo.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgvTraceCodeVo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvTraceCodeVo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle37.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle37.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle37.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle37.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle37.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle37.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvTraceCodeVo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle37;
- this.dgvTraceCodeVo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle38.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle38.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle38.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle38.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle38.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle38.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvTraceCodeVo.DefaultCellStyle = dataGridViewCellStyle38;
- this.dgvTraceCodeVo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvTraceCodeVo.EnableHeadersVisualStyles = false;
- this.dgvTraceCodeVo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvTraceCodeVo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvTraceCodeVo.Location = new System.Drawing.Point(0, 0);
- this.dgvTraceCodeVo.Name = "dgvTraceCodeVo";
- dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle39.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle39.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle39.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle39.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvTraceCodeVo.RowHeadersDefaultCellStyle = dataGridViewCellStyle39;
- dataGridViewCellStyle40.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle40.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle40.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle40.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle40.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvTraceCodeVo.RowsDefaultCellStyle = dataGridViewCellStyle40;
- this.dgvTraceCodeVo.RowTemplate.Height = 23;
- this.dgvTraceCodeVo.SelectedIndex = -1;
- this.dgvTraceCodeVo.Size = new System.Drawing.Size(200, 0);
- this.dgvTraceCodeVo.TabIndex = 15;
- this.dgvTraceCodeVo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage8
- //
- this.tabPage8.Controls.Add(this.dgvMedDrugInfo);
- this.tabPage8.Location = new System.Drawing.Point(0, 40);
- this.tabPage8.Name = "tabPage8";
- this.tabPage8.Size = new System.Drawing.Size(200, 0);
- this.tabPage8.TabIndex = 3;
- this.tabPage8.Text = "提示信息-medDrugInfo";
- this.tabPage8.UseVisualStyleBackColor = true;
- //
- // dgvMedDrugInfo
- //
- this.dgvMedDrugInfo.AllowUserToAddRows = false;
- this.dgvMedDrugInfo.AllowUserToDeleteRows = false;
- dataGridViewCellStyle41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvMedDrugInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle41;
- this.dgvMedDrugInfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgvMedDrugInfo.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgvMedDrugInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvMedDrugInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle42.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle42.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle42.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle42.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle42.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle42.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvMedDrugInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle42;
- this.dgvMedDrugInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle43.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle43.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle43.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle43.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle43.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle43.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvMedDrugInfo.DefaultCellStyle = dataGridViewCellStyle43;
- this.dgvMedDrugInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvMedDrugInfo.EnableHeadersVisualStyles = false;
- this.dgvMedDrugInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvMedDrugInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvMedDrugInfo.Location = new System.Drawing.Point(0, 0);
- this.dgvMedDrugInfo.Name = "dgvMedDrugInfo";
- dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle44.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle44.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle44.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle44.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle44.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle44.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvMedDrugInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle44;
- dataGridViewCellStyle45.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle45.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle45.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle45.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle45.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvMedDrugInfo.RowsDefaultCellStyle = dataGridViewCellStyle45;
- this.dgvMedDrugInfo.RowTemplate.Height = 23;
- this.dgvMedDrugInfo.SelectedIndex = -1;
- this.dgvMedDrugInfo.Size = new System.Drawing.Size(200, 0);
- this.dgvMedDrugInfo.TabIndex = 15;
- this.dgvMedDrugInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTitlePanel3
- //
- this.uiTitlePanel3.Controls.Add(this.dgvMedInsuMapRelation);
- this.uiTitlePanel3.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiTitlePanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTitlePanel3.Location = new System.Drawing.Point(0, 0);
- this.uiTitlePanel3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTitlePanel3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiTitlePanel3.Name = "uiTitlePanel3";
- this.uiTitlePanel3.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
- this.uiTitlePanel3.ShowText = false;
- this.uiTitlePanel3.Size = new System.Drawing.Size(1368, 378);
- this.uiTitlePanel3.TabIndex = 16;
- this.uiTitlePanel3.Text = "选中记录后点击上传按钮";
- this.uiTitlePanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiTitlePanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgvMedInsuMapRelation
- //
- this.dgvMedInsuMapRelation.AllowUserToAddRows = false;
- this.dgvMedInsuMapRelation.AllowUserToDeleteRows = false;
- dataGridViewCellStyle46.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvMedInsuMapRelation.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle46;
- this.dgvMedInsuMapRelation.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgvMedInsuMapRelation.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgvMedInsuMapRelation.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvMedInsuMapRelation.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle47.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle47.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle47.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle47.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle47.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle47.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvMedInsuMapRelation.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle47;
- this.dgvMedInsuMapRelation.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle48.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle48.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle48.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle48.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle48.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle48.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvMedInsuMapRelation.DefaultCellStyle = dataGridViewCellStyle48;
- this.dgvMedInsuMapRelation.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvMedInsuMapRelation.EnableHeadersVisualStyles = false;
- this.dgvMedInsuMapRelation.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvMedInsuMapRelation.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvMedInsuMapRelation.Location = new System.Drawing.Point(0, 35);
- this.dgvMedInsuMapRelation.Name = "dgvMedInsuMapRelation";
- dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle49.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle49.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle49.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle49.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle49.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle49.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvMedInsuMapRelation.RowHeadersDefaultCellStyle = dataGridViewCellStyle49;
- dataGridViewCellStyle50.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle50.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle50.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle50.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle50.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvMedInsuMapRelation.RowsDefaultCellStyle = dataGridViewCellStyle50;
- this.dgvMedInsuMapRelation.RowTemplate.Height = 23;
- this.dgvMedInsuMapRelation.SelectedIndex = -1;
- this.dgvMedInsuMapRelation.Size = new System.Drawing.Size(1368, 343);
- this.dgvMedInsuMapRelation.TabIndex = 14;
- this.dgvMedInsuMapRelation.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiPanel5
- //
- this.uiPanel5.Controls.Add(this.uiButton10);
- this.uiPanel5.Controls.Add(this.uiButton8);
- this.uiPanel5.Controls.Add(this.uiButton9);
- this.uiPanel5.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel5.Location = new System.Drawing.Point(0, 644);
- this.uiPanel5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel5.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel5.Name = "uiPanel5";
- this.uiPanel5.Size = new System.Drawing.Size(1368, 73);
- this.uiPanel5.TabIndex = 11;
- this.uiPanel5.Text = null;
- this.uiPanel5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton10
- //
- this.uiButton10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton10.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton10.Location = new System.Drawing.Point(1129, 5);
- this.uiButton10.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton10.Name = "uiButton10";
- this.uiButton10.Size = new System.Drawing.Size(117, 62);
- this.uiButton10.TabIndex = 28;
- this.uiButton10.Text = "上 传";
- this.uiButton10.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton10.Click += new System.EventHandler(this.uiButton10_Click);
- //
- // uiButton8
- //
- this.uiButton8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton8.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton8.Location = new System.Drawing.Point(1248, 5);
- this.uiButton8.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton8.Name = "uiButton8";
- this.uiButton8.Size = new System.Drawing.Size(117, 62);
- this.uiButton8.TabIndex = 26;
- this.uiButton8.Text = "退 出";
- this.uiButton8.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton8.Click += new System.EventHandler(this.btnClose_Click);
- //
- // uiButton9
- //
- this.uiButton9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton9.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton9.Location = new System.Drawing.Point(1010, 5);
- this.uiButton9.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton9.Name = "uiButton9";
- this.uiButton9.Size = new System.Drawing.Size(117, 62);
- this.uiButton9.TabIndex = 19;
- this.uiButton9.Text = "查 询";
- this.uiButton9.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton9.Click += new System.EventHandler(this.uiButton9_Click);
- //
- // tabPage3
- //
- this.tabPage3.Controls.Add(this.uiTitlePanel6);
- this.tabPage3.Controls.Add(this.uiTitlePanel5);
- this.tabPage3.Controls.Add(this.uiPanel7);
- this.tabPage3.Location = new System.Drawing.Point(0, 40);
- this.tabPage3.Name = "tabPage3";
- this.tabPage3.Size = new System.Drawing.Size(200, 20);
- this.tabPage3.TabIndex = 1;
- this.tabPage3.Text = "【20002】事后单据鉴核信息提报";
- this.tabPage3.UseVisualStyleBackColor = true;
- //
- // uiTitlePanel6
- //
- this.uiTitlePanel6.Controls.Add(this.dgv_BillDetailInfo);
- this.uiTitlePanel6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTitlePanel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTitlePanel6.Location = new System.Drawing.Point(0, 389);
- this.uiTitlePanel6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTitlePanel6.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiTitlePanel6.Name = "uiTitlePanel6";
- this.uiTitlePanel6.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
- this.uiTitlePanel6.ShowText = false;
- this.uiTitlePanel6.Size = new System.Drawing.Size(200, 1);
- this.uiTitlePanel6.TabIndex = 18;
- this.uiTitlePanel6.Text = "单据药品明细信息-detail";
- this.uiTitlePanel6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiTitlePanel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv_BillDetailInfo
- //
- this.dgv_BillDetailInfo.AllowUserToAddRows = false;
- this.dgv_BillDetailInfo.AllowUserToDeleteRows = false;
- dataGridViewCellStyle51.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_BillDetailInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle51;
- this.dgv_BillDetailInfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgv_BillDetailInfo.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgv_BillDetailInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_BillDetailInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle52.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle52.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle52.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle52.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle52.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle52.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_BillDetailInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle52;
- this.dgv_BillDetailInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle53.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle53.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle53.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle53.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle53.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_BillDetailInfo.DefaultCellStyle = dataGridViewCellStyle53;
- this.dgv_BillDetailInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_BillDetailInfo.EnableHeadersVisualStyles = false;
- this.dgv_BillDetailInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_BillDetailInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_BillDetailInfo.Location = new System.Drawing.Point(0, 35);
- this.dgv_BillDetailInfo.Name = "dgv_BillDetailInfo";
- dataGridViewCellStyle54.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle54.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle54.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle54.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle54.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle54.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle54.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_BillDetailInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle54;
- dataGridViewCellStyle55.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle55.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle55.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle55.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle55.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_BillDetailInfo.RowsDefaultCellStyle = dataGridViewCellStyle55;
- this.dgv_BillDetailInfo.RowTemplate.Height = 23;
- this.dgv_BillDetailInfo.SelectedIndex = -1;
- this.dgv_BillDetailInfo.Size = new System.Drawing.Size(200, 0);
- this.dgv_BillDetailInfo.TabIndex = 15;
- this.dgv_BillDetailInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTitlePanel5
- //
- this.uiTitlePanel5.Controls.Add(this.dgv_BillInfo);
- this.uiTitlePanel5.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiTitlePanel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTitlePanel5.Location = new System.Drawing.Point(0, 0);
- this.uiTitlePanel5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTitlePanel5.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiTitlePanel5.Name = "uiTitlePanel5";
- this.uiTitlePanel5.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
- this.uiTitlePanel5.ShowText = false;
- this.uiTitlePanel5.Size = new System.Drawing.Size(200, 389);
- this.uiTitlePanel5.TabIndex = 17;
- this.uiTitlePanel5.Text = "销售单据信息-data(单击查看明细)";
- this.uiTitlePanel5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiTitlePanel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv_BillInfo
- //
- this.dgv_BillInfo.AllowUserToAddRows = false;
- this.dgv_BillInfo.AllowUserToDeleteRows = false;
- dataGridViewCellStyle56.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_BillInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle56;
- this.dgv_BillInfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
- this.dgv_BillInfo.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
- this.dgv_BillInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_BillInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle57.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle57.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle57.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle57.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle57.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle57.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle57.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_BillInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle57;
- this.dgv_BillInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle58.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle58.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle58.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle58.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle58.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle58.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle58.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_BillInfo.DefaultCellStyle = dataGridViewCellStyle58;
- this.dgv_BillInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_BillInfo.EnableHeadersVisualStyles = false;
- this.dgv_BillInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_BillInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_BillInfo.Location = new System.Drawing.Point(0, 35);
- this.dgv_BillInfo.Name = "dgv_BillInfo";
- dataGridViewCellStyle59.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle59.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle59.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle59.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle59.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle59.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle59.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_BillInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle59;
- dataGridViewCellStyle60.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle60.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle60.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle60.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle60.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_BillInfo.RowsDefaultCellStyle = dataGridViewCellStyle60;
- this.dgv_BillInfo.RowTemplate.Height = 23;
- this.dgv_BillInfo.SelectedIndex = -1;
- this.dgv_BillInfo.Size = new System.Drawing.Size(200, 354);
- this.dgv_BillInfo.TabIndex = 15;
- this.dgv_BillInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.dgv_BillInfo.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_BillInfo_CellClick);
- this.dgv_BillInfo.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_BillInfo_CellDoubleClick);
- //
- // uiPanel7
- //
- this.uiPanel7.Controls.Add(this.uiButton13);
- this.uiPanel7.Controls.Add(this.uiButton14);
- this.uiPanel7.Controls.Add(this.uiButton15);
- this.uiPanel7.Controls.Add(this.uiGroupBox4);
- this.uiPanel7.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel7.Location = new System.Drawing.Point(0, -84);
- this.uiPanel7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel7.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel7.Name = "uiPanel7";
- this.uiPanel7.Size = new System.Drawing.Size(200, 104);
- this.uiPanel7.TabIndex = 15;
- this.uiPanel7.Text = null;
- this.uiPanel7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton13
- //
- this.uiButton13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton13.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton13.Location = new System.Drawing.Point(-29, 19);
- this.uiButton13.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton13.Name = "uiButton13";
- this.uiButton13.Size = new System.Drawing.Size(110, 67);
- this.uiButton13.TabIndex = 27;
- this.uiButton13.Text = "上 传";
- this.uiButton13.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton13.Click += new System.EventHandler(this.uiButton13_Click);
- //
- // uiButton14
- //
- this.uiButton14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton14.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton14.Location = new System.Drawing.Point(84, 19);
- this.uiButton14.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton14.Name = "uiButton14";
- this.uiButton14.Size = new System.Drawing.Size(110, 67);
- this.uiButton14.TabIndex = 26;
- this.uiButton14.Text = "退 出";
- this.uiButton14.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton14.Click += new System.EventHandler(this.btnClose_Click);
- //
- // uiButton15
- //
- this.uiButton15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton15.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton15.Location = new System.Drawing.Point(-142, 19);
- this.uiButton15.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton15.Name = "uiButton15";
- this.uiButton15.Size = new System.Drawing.Size(110, 67);
- this.uiButton15.TabIndex = 19;
- this.uiButton15.Text = "查 询";
- this.uiButton15.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton15.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton15.Click += new System.EventHandler(this.uiButton15_Click);
- //
- // uiGroupBox4
- //
- this.uiGroupBox4.Controls.Add(this.date_et);
- this.uiGroupBox4.Controls.Add(this.date_st);
- this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiGroupBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox4.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox4.Name = "uiGroupBox4";
- this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox4.Size = new System.Drawing.Size(272, 104);
- this.uiGroupBox4.TabIndex = 20;
- this.uiGroupBox4.Text = "查询时间";
- this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // date_et
- //
- this.date_et.FillColor = System.Drawing.Color.White;
- this.date_et.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.date_et.Location = new System.Drawing.Point(27, 63);
- this.date_et.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.date_et.MaxLength = 19;
- this.date_et.MinimumSize = new System.Drawing.Size(63, 0);
- this.date_et.Name = "date_et";
- this.date_et.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.date_et.Size = new System.Drawing.Size(224, 29);
- this.date_et.SymbolDropDown = 61555;
- this.date_et.SymbolNormal = 61555;
- this.date_et.TabIndex = 1;
- this.date_et.Text = "2024-07-05 00:00:00";
- this.date_et.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.date_et.Value = new System.DateTime(2024, 7, 5, 0, 0, 0, 0);
- this.date_et.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // date_st
- //
- this.date_st.FillColor = System.Drawing.Color.White;
- this.date_st.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.date_st.Location = new System.Drawing.Point(27, 30);
- this.date_st.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.date_st.MaxLength = 19;
- this.date_st.MinimumSize = new System.Drawing.Size(63, 0);
- this.date_st.Name = "date_st";
- this.date_st.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.date_st.Size = new System.Drawing.Size(224, 29);
- this.date_st.SymbolDropDown = 61555;
- this.date_st.SymbolNormal = 61555;
- this.date_st.TabIndex = 0;
- this.date_st.Text = "2024-07-05 00:00:00";
- this.date_st.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.date_st.Value = new System.DateTime(2024, 7, 5, 0, 0, 0, 0);
- this.date_st.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage4
- //
- this.tabPage4.Controls.Add(this.uiPanel9);
- this.tabPage4.Controls.Add(this.uiPanel6);
- this.tabPage4.Location = new System.Drawing.Point(0, 40);
- this.tabPage4.Name = "tabPage4";
- this.tabPage4.Size = new System.Drawing.Size(200, 20);
- this.tabPage4.TabIndex = 2;
- this.tabPage4.Text = "【20003】销售单据退货";
- this.tabPage4.UseVisualStyleBackColor = true;
- //
- // uiPanel9
- //
- this.uiPanel9.Controls.Add(this.dtTHSJ);
- this.uiPanel9.Controls.Add(this.tbDJBH);
- this.uiPanel9.Controls.Add(this.tbJGBM);
- this.uiPanel9.Controls.Add(this.label3);
- this.uiPanel9.Controls.Add(this.label2);
- this.uiPanel9.Controls.Add(this.label1);
- this.uiPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiPanel9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel9.Location = new System.Drawing.Point(0, 0);
- this.uiPanel9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel9.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel9.Name = "uiPanel9";
- this.uiPanel9.Size = new System.Drawing.Size(200, 1);
- this.uiPanel9.TabIndex = 13;
- this.uiPanel9.Text = null;
- this.uiPanel9.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dtTHSJ
- //
- this.dtTHSJ.FillColor = System.Drawing.Color.White;
- this.dtTHSJ.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtTHSJ.Location = new System.Drawing.Point(604, 316);
- this.dtTHSJ.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dtTHSJ.MaxLength = 19;
- this.dtTHSJ.MinimumSize = new System.Drawing.Size(63, 0);
- this.dtTHSJ.Name = "dtTHSJ";
- this.dtTHSJ.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dtTHSJ.Size = new System.Drawing.Size(260, 29);
- this.dtTHSJ.SymbolDropDown = 61555;
- this.dtTHSJ.SymbolNormal = 61555;
- this.dtTHSJ.TabIndex = 24;
- this.dtTHSJ.Text = "2024-06-26 21:16:20";
- this.dtTHSJ.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dtTHSJ.Value = new System.DateTime(2024, 6, 26, 21, 16, 20, 828);
- this.dtTHSJ.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbDJBH
- //
- this.tbDJBH.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbDJBH.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbDJBH.Location = new System.Drawing.Point(604, 233);
- this.tbDJBH.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbDJBH.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbDJBH.Name = "tbDJBH";
- this.tbDJBH.ShowText = false;
- this.tbDJBH.Size = new System.Drawing.Size(260, 29);
- this.tbDJBH.TabIndex = 23;
- this.tbDJBH.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbDJBH.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbJGBM
- //
- this.tbJGBM.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbJGBM.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbJGBM.Location = new System.Drawing.Point(604, 150);
- this.tbJGBM.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbJGBM.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbJGBM.Name = "tbJGBM";
- this.tbJGBM.ShowText = false;
- this.tbJGBM.Size = new System.Drawing.Size(260, 29);
- this.tbJGBM.TabIndex = 22;
- this.tbJGBM.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbJGBM.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(504, 316);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(74, 21);
- this.label3.TabIndex = 21;
- this.label3.Text = "退货时间";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(504, 233);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(74, 21);
- this.label2.TabIndex = 20;
- this.label2.Text = "单据编号";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(504, 150);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(74, 21);
- this.label1.TabIndex = 19;
- this.label1.Text = "机构编码";
- //
- // uiPanel6
- //
- this.uiPanel6.Controls.Add(this.uiButton11);
- this.uiPanel6.Controls.Add(this.uiButton12);
- this.uiPanel6.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel6.Location = new System.Drawing.Point(0, -53);
- this.uiPanel6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel6.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel6.Name = "uiPanel6";
- this.uiPanel6.Size = new System.Drawing.Size(200, 73);
- this.uiPanel6.TabIndex = 12;
- this.uiPanel6.Text = null;
- this.uiPanel6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton11
- //
- this.uiButton11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton11.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton11.Location = new System.Drawing.Point(-39, 5);
- this.uiButton11.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton11.Name = "uiButton11";
- this.uiButton11.Size = new System.Drawing.Size(117, 62);
- this.uiButton11.TabIndex = 28;
- this.uiButton11.Text = "上 传";
- this.uiButton11.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton11.Click += new System.EventHandler(this.uiButton11_Click);
- //
- // uiButton12
- //
- this.uiButton12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton12.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton12.Location = new System.Drawing.Point(80, 5);
- this.uiButton12.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton12.Name = "uiButton12";
- this.uiButton12.Size = new System.Drawing.Size(117, 62);
- this.uiButton12.TabIndex = 26;
- this.uiButton12.Text = "退 出";
- this.uiButton12.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton12.Click += new System.EventHandler(this.btnClose_Click);
- //
- // tb_10001
- //
- this.tb_10001.Controls.Add(this.uiTitlePanel8);
- this.tb_10001.Controls.Add(this.uiTitlePanel7);
- this.tb_10001.Controls.Add(this.uiPanel8);
- this.tb_10001.Location = new System.Drawing.Point(0, 40);
- this.tb_10001.Name = "tb_10001";
- this.tb_10001.Size = new System.Drawing.Size(1368, 757);
- this.tb_10001.TabIndex = 5;
- this.tb_10001.Text = "门诊处方风险提示";
- this.tb_10001.UseVisualStyleBackColor = true;
- //
- // uiTitlePanel8
- //
- this.uiTitlePanel8.Controls.Add(this.dgv_PrescriptionInfo);
- this.uiTitlePanel8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTitlePanel8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTitlePanel8.Location = new System.Drawing.Point(0, 427);
- this.uiTitlePanel8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTitlePanel8.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiTitlePanel8.Name = "uiTitlePanel8";
- this.uiTitlePanel8.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
- this.uiTitlePanel8.ShowText = false;
- this.uiTitlePanel8.Size = new System.Drawing.Size(1368, 226);
- this.uiTitlePanel8.TabIndex = 18;
- this.uiTitlePanel8.Text = "处方明细信息";
- this.uiTitlePanel8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiTitlePanel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv_PrescriptionInfo
- //
- this.dgv_PrescriptionInfo.AllowUserToAddRows = false;
- dataGridViewCellStyle61.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_PrescriptionInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle61;
- this.dgv_PrescriptionInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_PrescriptionInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle62.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle62.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle62.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle62.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle62.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle62.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle62.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_PrescriptionInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle62;
- this.dgv_PrescriptionInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle63.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle63.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle63.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle63.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle63.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle63.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle63.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_PrescriptionInfo.DefaultCellStyle = dataGridViewCellStyle63;
- this.dgv_PrescriptionInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_PrescriptionInfo.EnableHeadersVisualStyles = false;
- this.dgv_PrescriptionInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_PrescriptionInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_PrescriptionInfo.Location = new System.Drawing.Point(0, 35);
- this.dgv_PrescriptionInfo.Name = "dgv_PrescriptionInfo";
- dataGridViewCellStyle64.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle64.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle64.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle64.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle64.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle64.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle64.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_PrescriptionInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle64;
- dataGridViewCellStyle65.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle65.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle65.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle65.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle65.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_PrescriptionInfo.RowsDefaultCellStyle = dataGridViewCellStyle65;
- this.dgv_PrescriptionInfo.RowTemplate.Height = 23;
- this.dgv_PrescriptionInfo.SelectedIndex = -1;
- this.dgv_PrescriptionInfo.Size = new System.Drawing.Size(1368, 191);
- this.dgv_PrescriptionInfo.TabIndex = 6;
- this.dgv_PrescriptionInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTitlePanel7
- //
- this.uiTitlePanel7.Controls.Add(this.dgv_HISRegInfo);
- this.uiTitlePanel7.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiTitlePanel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTitlePanel7.Location = new System.Drawing.Point(0, 0);
- this.uiTitlePanel7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTitlePanel7.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiTitlePanel7.Name = "uiTitlePanel7";
- this.uiTitlePanel7.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
- this.uiTitlePanel7.ShowText = false;
- this.uiTitlePanel7.Size = new System.Drawing.Size(1368, 427);
- this.uiTitlePanel7.TabIndex = 17;
- this.uiTitlePanel7.Text = "患者处方信息列表(单击查看明细信息、双击上传)";
- this.uiTitlePanel7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiTitlePanel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv_HISRegInfo
- //
- this.dgv_HISRegInfo.AllowUserToAddRows = false;
- dataGridViewCellStyle66.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_HISRegInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle66;
- this.dgv_HISRegInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_HISRegInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle67.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle67.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle67.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle67.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle67.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle67.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle67.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_HISRegInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle67;
- this.dgv_HISRegInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle68.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle68.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle68.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle68.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle68.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle68.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle68.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_HISRegInfo.DefaultCellStyle = dataGridViewCellStyle68;
- this.dgv_HISRegInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_HISRegInfo.EnableHeadersVisualStyles = false;
- this.dgv_HISRegInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_HISRegInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_HISRegInfo.Location = new System.Drawing.Point(0, 35);
- this.dgv_HISRegInfo.Name = "dgv_HISRegInfo";
- dataGridViewCellStyle69.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle69.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle69.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle69.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle69.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle69.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle69.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_HISRegInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle69;
- dataGridViewCellStyle70.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle70.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle70.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle70.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle70.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_HISRegInfo.RowsDefaultCellStyle = dataGridViewCellStyle70;
- this.dgv_HISRegInfo.RowTemplate.Height = 23;
- this.dgv_HISRegInfo.SelectedIndex = -1;
- this.dgv_HISRegInfo.Size = new System.Drawing.Size(1368, 392);
- this.dgv_HISRegInfo.TabIndex = 5;
- this.dgv_HISRegInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.dgv_HISRegInfo.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_HISRegInfo_CellClick);
- this.dgv_HISRegInfo.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_HISRegInfo_CellDoubleClick);
- //
- // uiPanel8
- //
- this.uiPanel8.Controls.Add(this.uiButton21);
- this.uiPanel8.Controls.Add(this.tb_SFZH);
- this.uiPanel8.Controls.Add(this.uiLabel9);
- this.uiPanel8.Controls.Add(this.uiButton16);
- this.uiPanel8.Controls.Add(this.uiButton17);
- this.uiPanel8.Controls.Add(this.uiButton18);
- this.uiPanel8.Controls.Add(this.uiGroupBox7);
- this.uiPanel8.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel8.Location = new System.Drawing.Point(0, 653);
- this.uiPanel8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel8.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel8.Name = "uiPanel8";
- this.uiPanel8.Size = new System.Drawing.Size(1368, 104);
- this.uiPanel8.TabIndex = 16;
- this.uiPanel8.Text = null;
- this.uiPanel8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton21
- //
- this.uiButton21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton21.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton21.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton21.Location = new System.Drawing.Point(1143, 23);
- this.uiButton21.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton21.Name = "uiButton21";
- this.uiButton21.Size = new System.Drawing.Size(110, 67);
- this.uiButton21.TabIndex = 35;
- this.uiButton21.Text = "全部上传";
- this.uiButton21.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton21.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton21.Click += new System.EventHandler(this.uiButton21_Click);
- //
- // tb_SFZH
- //
- this.tb_SFZH.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tb_SFZH.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tb_SFZH.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tb_SFZH.Location = new System.Drawing.Point(290, 51);
- this.tb_SFZH.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tb_SFZH.MinimumSize = new System.Drawing.Size(1, 16);
- this.tb_SFZH.Name = "tb_SFZH";
- this.tb_SFZH.ShowText = false;
- this.tb_SFZH.Size = new System.Drawing.Size(207, 29);
- this.tb_SFZH.TabIndex = 34;
- this.tb_SFZH.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tb_SFZH.Watermark = "请输入身份证号";
- this.tb_SFZH.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel9
- //
- this.uiLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel9.Location = new System.Drawing.Point(290, 23);
- this.uiLabel9.Name = "uiLabel9";
- this.uiLabel9.Size = new System.Drawing.Size(82, 23);
- this.uiLabel9.TabIndex = 33;
- this.uiLabel9.Text = "身份证号:";
- this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton16
- //
- this.uiButton16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton16.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton16.Location = new System.Drawing.Point(1032, 23);
- this.uiButton16.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton16.Name = "uiButton16";
- this.uiButton16.Size = new System.Drawing.Size(110, 67);
- this.uiButton16.TabIndex = 27;
- this.uiButton16.Text = "上 传";
- this.uiButton16.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton16.Click += new System.EventHandler(this.uiButton16_Click);
- //
- // uiButton17
- //
- this.uiButton17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton17.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton17.Location = new System.Drawing.Point(1254, 23);
- this.uiButton17.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton17.Name = "uiButton17";
- this.uiButton17.Size = new System.Drawing.Size(110, 67);
- this.uiButton17.TabIndex = 26;
- this.uiButton17.Text = "退 出";
- this.uiButton17.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton17.Click += new System.EventHandler(this.btnClose_Click);
- //
- // uiButton18
- //
- this.uiButton18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton18.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton18.Location = new System.Drawing.Point(920, 23);
- this.uiButton18.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton18.Name = "uiButton18";
- this.uiButton18.Size = new System.Drawing.Size(110, 67);
- this.uiButton18.TabIndex = 19;
- this.uiButton18.Text = "查 询";
- this.uiButton18.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton18.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton18.Click += new System.EventHandler(this.uiButton18_Click);
- //
- // uiGroupBox7
- //
- this.uiGroupBox7.Controls.Add(this.dtp_et);
- this.uiGroupBox7.Controls.Add(this.dtp_st);
- this.uiGroupBox7.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiGroupBox7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox7.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox7.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox7.Name = "uiGroupBox7";
- this.uiGroupBox7.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox7.Size = new System.Drawing.Size(272, 104);
- this.uiGroupBox7.TabIndex = 20;
- this.uiGroupBox7.Text = "查询时间";
- this.uiGroupBox7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dtp_et
- //
- this.dtp_et.FillColor = System.Drawing.Color.White;
- this.dtp_et.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtp_et.Location = new System.Drawing.Point(27, 63);
- this.dtp_et.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dtp_et.MaxLength = 19;
- this.dtp_et.MinimumSize = new System.Drawing.Size(63, 0);
- this.dtp_et.Name = "dtp_et";
- this.dtp_et.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dtp_et.Size = new System.Drawing.Size(224, 29);
- this.dtp_et.SymbolDropDown = 61555;
- this.dtp_et.SymbolNormal = 61555;
- this.dtp_et.TabIndex = 1;
- this.dtp_et.Text = "2024-07-05 00:00:00";
- this.dtp_et.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dtp_et.Value = new System.DateTime(2024, 7, 5, 0, 0, 0, 0);
- this.dtp_et.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dtp_st
- //
- this.dtp_st.FillColor = System.Drawing.Color.White;
- this.dtp_st.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtp_st.Location = new System.Drawing.Point(27, 30);
- this.dtp_st.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dtp_st.MaxLength = 19;
- this.dtp_st.MinimumSize = new System.Drawing.Size(63, 0);
- this.dtp_st.Name = "dtp_st";
- this.dtp_st.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dtp_st.Size = new System.Drawing.Size(224, 29);
- this.dtp_st.SymbolDropDown = 61555;
- this.dtp_st.SymbolNormal = 61555;
- this.dtp_st.TabIndex = 0;
- this.dtp_st.Text = "2024-07-05 00:00:00";
- this.dtp_st.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dtp_st.Value = new System.DateTime(2024, 7, 5, 0, 0, 0, 0);
- this.dtp_st.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tab5205
- //
- this.tab5205.Controls.Add(this.uiTitlePanel9);
- this.tab5205.Controls.Add(this.uiPanel10);
- this.tab5205.Location = new System.Drawing.Point(0, 40);
- this.tab5205.Name = "tab5205";
- this.tab5205.Size = new System.Drawing.Size(1368, 757);
- this.tab5205.TabIndex = 6;
- this.tab5205.Text = "人员慢特病用药记录查询";
- this.tab5205.UseVisualStyleBackColor = true;
- //
- // uiTitlePanel9
- //
- this.uiTitlePanel9.Controls.Add(this.dgv5205);
- this.uiTitlePanel9.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTitlePanel9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTitlePanel9.Location = new System.Drawing.Point(0, 0);
- this.uiTitlePanel9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTitlePanel9.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiTitlePanel9.Name = "uiTitlePanel9";
- this.uiTitlePanel9.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
- this.uiTitlePanel9.ShowText = false;
- this.uiTitlePanel9.Size = new System.Drawing.Size(1368, 657);
- this.uiTitlePanel9.TabIndex = 19;
- this.uiTitlePanel9.Text = "人员慢特病用药记录查询";
- this.uiTitlePanel9.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiTitlePanel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv5205
- //
- this.dgv5205.AllowUserToAddRows = false;
- dataGridViewCellStyle71.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv5205.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle71;
- this.dgv5205.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv5205.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle72.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle72.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle72.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle72.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle72.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle72.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle72.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv5205.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle72;
- this.dgv5205.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle73.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle73.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle73.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle73.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle73.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle73.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle73.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv5205.DefaultCellStyle = dataGridViewCellStyle73;
- this.dgv5205.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv5205.EnableHeadersVisualStyles = false;
- this.dgv5205.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv5205.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv5205.Location = new System.Drawing.Point(0, 35);
- this.dgv5205.Name = "dgv5205";
- dataGridViewCellStyle74.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle74.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle74.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle74.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle74.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle74.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle74.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv5205.RowHeadersDefaultCellStyle = dataGridViewCellStyle74;
- dataGridViewCellStyle75.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle75.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle75.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle75.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle75.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv5205.RowsDefaultCellStyle = dataGridViewCellStyle75;
- this.dgv5205.RowTemplate.Height = 23;
- this.dgv5205.SelectedIndex = -1;
- this.dgv5205.Size = new System.Drawing.Size(1368, 622);
- this.dgv5205.TabIndex = 6;
- this.dgv5205.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiPanel10
- //
- this.uiPanel10.Controls.Add(this.uiGroupBox5);
- this.uiPanel10.Controls.Add(this.btnReadCard);
- this.uiPanel10.Controls.Add(this.uiButton24);
- this.uiPanel10.Controls.Add(this.btn5205);
- this.uiPanel10.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel10.Location = new System.Drawing.Point(0, 657);
- this.uiPanel10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel10.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel10.Name = "uiPanel10";
- this.uiPanel10.Size = new System.Drawing.Size(1368, 100);
- this.uiPanel10.TabIndex = 17;
- this.uiPanel10.Text = null;
- this.uiPanel10.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiGroupBox5
- //
- this.uiGroupBox5.Controls.Add(this.dptET);
- this.uiGroupBox5.Controls.Add(this.dptST);
- this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiGroupBox5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox5.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox5.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox5.Name = "uiGroupBox5";
- this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox5.Size = new System.Drawing.Size(272, 100);
- this.uiGroupBox5.TabIndex = 28;
- this.uiGroupBox5.Text = "查询时间";
- this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dptET
- //
- this.dptET.FillColor = System.Drawing.Color.White;
- this.dptET.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dptET.Location = new System.Drawing.Point(27, 60);
- this.dptET.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dptET.MaxLength = 19;
- this.dptET.MinimumSize = new System.Drawing.Size(63, 0);
- this.dptET.Name = "dptET";
- this.dptET.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dptET.Size = new System.Drawing.Size(224, 29);
- this.dptET.SymbolDropDown = 61555;
- this.dptET.SymbolNormal = 61555;
- this.dptET.TabIndex = 1;
- this.dptET.Text = "2024-07-05 00:00:00";
- this.dptET.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dptET.Value = new System.DateTime(2024, 7, 5, 0, 0, 0, 0);
- this.dptET.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dptST
- //
- this.dptST.FillColor = System.Drawing.Color.White;
- this.dptST.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dptST.Location = new System.Drawing.Point(27, 27);
- this.dptST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dptST.MaxLength = 19;
- this.dptST.MinimumSize = new System.Drawing.Size(63, 0);
- this.dptST.Name = "dptST";
- this.dptST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dptST.Size = new System.Drawing.Size(224, 29);
- this.dptST.SymbolDropDown = 61555;
- this.dptST.SymbolNormal = 61555;
- this.dptST.TabIndex = 0;
- this.dptST.Text = "2024-01-05 00:00:00";
- this.dptST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dptST.Value = new System.DateTime(2024, 1, 5, 0, 0, 0, 0);
- this.dptST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnReadCard
- //
- this.btnReadCard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnReadCard.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnReadCard.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnReadCard.Location = new System.Drawing.Point(1028, 16);
- this.btnReadCard.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnReadCard.Name = "btnReadCard";
- this.btnReadCard.Size = new System.Drawing.Size(110, 70);
- this.btnReadCard.TabIndex = 27;
- this.btnReadCard.Text = "读 卡";
- this.btnReadCard.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnReadCard.Visible = false;
- this.btnReadCard.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnReadCard.Click += new System.EventHandler(this.btnReadCard_Click);
- //
- // uiButton24
- //
- this.uiButton24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton24.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton24.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton24.Location = new System.Drawing.Point(1254, 16);
- this.uiButton24.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton24.Name = "uiButton24";
- this.uiButton24.Size = new System.Drawing.Size(110, 70);
- this.uiButton24.TabIndex = 26;
- this.uiButton24.Text = "退 出";
- this.uiButton24.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton24.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton24.Click += new System.EventHandler(this.btnClose_Click);
- //
- // btn5205
- //
- this.btn5205.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btn5205.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn5205.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn5205.Location = new System.Drawing.Point(1141, 16);
- this.btn5205.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn5205.Name = "btn5205";
- this.btn5205.Size = new System.Drawing.Size(110, 70);
- this.btn5205.TabIndex = 19;
- this.btn5205.Text = "查 询";
- this.btn5205.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn5205.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btn5205.Click += new System.EventHandler(this.btn5205_Click);
- //
- // cbbRYCBLB
- //
- this.cbbRYCBLB.DataSource = null;
- this.cbbRYCBLB.FillColor = System.Drawing.Color.White;
- this.cbbRYCBLB.FilterMaxCount = 50;
- this.cbbRYCBLB.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbbRYCBLB.Items.AddRange(new object[] {
- "1024100-职工",
- "1024200-居民",
- "1024300-学生",
- "1024400-异地人员"});
- this.cbbRYCBLB.Location = new System.Drawing.Point(127, 30);
- this.cbbRYCBLB.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbbRYCBLB.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbbRYCBLB.Name = "cbbRYCBLB";
- this.cbbRYCBLB.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbbRYCBLB.Size = new System.Drawing.Size(230, 29);
- this.cbbRYCBLB.TabIndex = 1;
- this.cbbRYCBLB.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbbRYCBLB.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbbRYLB
- //
- this.cbbRYLB.DataSource = null;
- this.cbbRYLB.FillColor = System.Drawing.Color.White;
- this.cbbRYLB.FilterMaxCount = 50;
- this.cbbRYLB.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbbRYLB.Items.AddRange(new object[] {
- "1025100\t在职",
- "1025200\t农民工",
- "1025300\t退休人员",
- "1025400\t离休",
- "1025500\t居民(未成年)",
- "1025600\t新生儿",
- "1025700\t学龄前儿童",
- "1025800\t中小学生",
- "1025900\t大学生",
- "1025110\t未成年(未入学)",
- "1025111\t居民(成年)",
- "1025112\t普通居民(成年)",
- "1025113\t居民(老年)"});
- this.cbbRYLB.Location = new System.Drawing.Point(127, 65);
- this.cbbRYLB.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbbRYLB.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbbRYLB.Name = "cbbRYLB";
- this.cbbRYLB.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbbRYLB.Size = new System.Drawing.Size(230, 29);
- this.cbbRYLB.TabIndex = 3;
- this.cbbRYLB.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbbRYLB.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // MedInsuQuery
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1368, 797);
- this.Controls.Add(this.tbcMain);
- this.Name = "MedInsuQuery";
- this.Text = "医保业务相关";
- this.Load += new System.EventHandler(this.MedInsuQuery_Load);
- this.tbcMain.ResumeLayout(false);
- this.tabInHosPerInfoExport.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvSettlRecord)).EndInit();
- this.uiPanel1.ResumeLayout(false);
- this.gbDateTime.ResumeLayout(false);
- this.tP_InsuFeel.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvInsuFeeUpload)).EndInit();
- this.uiPanel2.ResumeLayout(false);
- this.uiGroupBox1.ResumeLayout(false);
- this.tb_4001.ResumeLayout(false);
- this.uiTitlePanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_4001)).EndInit();
- this.uiPanel3.ResumeLayout(false);
- this.uiGroupBox2.ResumeLayout(false);
- this.tab_FeeInfo.ResumeLayout(false);
- this.uiTitlePanel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvFeeInfo)).EndInit();
- this.tt.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvSettleData)).EndInit();
- this.uiPanel4.ResumeLayout(false);
- this.uiGroupBox3.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- this.uiTabControl1.ResumeLayout(false);
- this.tabPage2.ResumeLayout(false);
- this.uiTitlePanel4.ResumeLayout(false);
- this.uiTabControl2.ResumeLayout(false);
- this.tabPage5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
- this.tabPage6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvVerifyResult)).EndInit();
- this.tabPage7.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvTraceCodeVo)).EndInit();
- this.tabPage8.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvMedDrugInfo)).EndInit();
- this.uiTitlePanel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvMedInsuMapRelation)).EndInit();
- this.uiPanel5.ResumeLayout(false);
- this.tabPage3.ResumeLayout(false);
- this.uiTitlePanel6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_BillDetailInfo)).EndInit();
- this.uiTitlePanel5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_BillInfo)).EndInit();
- this.uiPanel7.ResumeLayout(false);
- this.uiGroupBox4.ResumeLayout(false);
- this.tabPage4.ResumeLayout(false);
- this.uiPanel9.ResumeLayout(false);
- this.uiPanel9.PerformLayout();
- this.uiPanel6.ResumeLayout(false);
- this.tb_10001.ResumeLayout(false);
- this.uiTitlePanel8.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_PrescriptionInfo)).EndInit();
- this.uiTitlePanel7.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_HISRegInfo)).EndInit();
- this.uiPanel8.ResumeLayout(false);
- this.uiGroupBox7.ResumeLayout(false);
- this.tab5205.ResumeLayout(false);
- this.uiTitlePanel9.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv5205)).EndInit();
- this.uiPanel10.ResumeLayout(false);
- this.uiGroupBox5.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private Sunny.UI.UITabControl tbcMain;
- private System.Windows.Forms.TabPage tabInHosPerInfoExport;
- public Sunny.UI.UIDataGridView dgvSettlRecord;
- private Sunny.UI.UIPagination pgSettlRecod;
- private Sunny.UI.UIPanel uiPanel1;
- private Sunny.UI.UIButton btnClose;
- private Sunny.UI.UIButton btnQuery;
- private Sunny.UI.UIButton btnPrint;
- private Sunny.UI.UIGroupBox gbDateTime;
- private Sunny.UI.UIDatetimePicker dpED;
- private Sunny.UI.UIDatetimePicker dpST;
- private System.Windows.Forms.TabPage tP_InsuFeel;
- public Sunny.UI.UIDataGridView dgvInsuFeeUpload;
- private Sunny.UI.UIPanel uiPanel2;
- private Sunny.UI.UIButton uiButton1;
- private Sunny.UI.UIButton btnOK;
- private Sunny.UI.UIGroupBox uiGroupBox1;
- private Sunny.UI.UIDatetimePicker dt_ET;
- private Sunny.UI.UIDatetimePicker dt_ST;
- private Sunny.UI.UITextBox tb_SettleID;
- private Sunny.UI.UITextBox tb_InHospNo;
- private Sunny.UI.UILabel uiLabel2;
- private Sunny.UI.UILabel uiLabel1;
- private Sunny.UI.UIComboBox cbbOverPrice;
- private Sunny.UI.UIComboBox cbbLevel;
- private Sunny.UI.UILabel uiLabel4;
- private Sunny.UI.UILabel uiLabel3;
- private System.Windows.Forms.TabPage tb_4001;
- private Sunny.UI.UIPanel uiPanel3;
- private Sunny.UI.UIButton uiButton4;
- private Sunny.UI.UIButton uiButton2;
- private Sunny.UI.UIButton uiButton3;
- private Sunny.UI.UIGroupBox uiGroupBox2;
- private Sunny.UI.UIDatetimePicker DT_ET1;
- private Sunny.UI.UIDatetimePicker DT_ST1;
- private Sunny.UI.UITextBox tb_CertNo;
- private Sunny.UI.UILabel uiLabel5;
- private System.Windows.Forms.TabPage tab_FeeInfo;
- private Sunny.UI.UIPanel uiPanel4;
- private Sunny.UI.UITextBox tb_CertNo2;
- private Sunny.UI.UILabel uiLabel6;
- private Sunny.UI.UIButton uiButton5;
- private Sunny.UI.UIButton uiButton6;
- private Sunny.UI.UIButton uiButton7;
- private Sunny.UI.UIGroupBox uiGroupBox3;
- private Sunny.UI.UIDatetimePicker dpt_ET;
- private Sunny.UI.UIDatetimePicker dpt_ST;
- private Sunny.UI.UITitlePanel uiTitlePanel2;
- public Sunny.UI.UIDataGridView dgvFeeInfo;
- private Sunny.UI.UITitlePanel tt;
- public Sunny.UI.UIDataGridView dgvSettleData;
- private Sunny.UI.UIRadioButtonGroup rbg_Type;
- private Sunny.UI.UITitlePanel uiTitlePanel1;
- public Sunny.UI.UIDataGridView dgv_4001;
- private System.Windows.Forms.TabPage tabPage1;
- private Sunny.UI.UITabControl uiTabControl1;
- private System.Windows.Forms.TabPage tabPage2;
- private System.Windows.Forms.TabPage tabPage3;
- private System.Windows.Forms.TabPage tabPage4;
- private Sunny.UI.UITitlePanel uiTitlePanel3;
- public Sunny.UI.UIDataGridView dgvMedInsuMapRelation;
- private Sunny.UI.UIPanel uiPanel5;
- private Sunny.UI.UIButton uiButton8;
- private Sunny.UI.UIButton uiButton9;
- private Sunny.UI.UIButton uiButton10;
- private Sunny.UI.UITitlePanel uiTitlePanel4;
- private Sunny.UI.UITabControl uiTabControl2;
- private System.Windows.Forms.TabPage tabPage5;
- public Sunny.UI.UIDataGridView dgvData;
- private System.Windows.Forms.TabPage tabPage6;
- public Sunny.UI.UIDataGridView dgvVerifyResult;
- private System.Windows.Forms.TabPage tabPage7;
- public Sunny.UI.UIDataGridView dgvTraceCodeVo;
- private System.Windows.Forms.TabPage tabPage8;
- public Sunny.UI.UIDataGridView dgvMedDrugInfo;
- private Sunny.UI.UIPanel uiPanel6;
- private Sunny.UI.UIButton uiButton11;
- private Sunny.UI.UIButton uiButton12;
- private Sunny.UI.UIPanel uiPanel7;
- private Sunny.UI.UIButton uiButton13;
- private Sunny.UI.UIButton uiButton14;
- private Sunny.UI.UIButton uiButton15;
- private Sunny.UI.UIGroupBox uiGroupBox4;
- private Sunny.UI.UIDatetimePicker date_et;
- private Sunny.UI.UIDatetimePicker date_st;
- private Sunny.UI.UITitlePanel uiTitlePanel6;
- private Sunny.UI.UITitlePanel uiTitlePanel5;
- private System.Windows.Forms.TabPage tb_10001;
- private Sunny.UI.UIPanel uiPanel8;
- private Sunny.UI.UIButton uiButton16;
- private Sunny.UI.UIButton uiButton17;
- private Sunny.UI.UIButton uiButton18;
- private Sunny.UI.UIGroupBox uiGroupBox7;
- private Sunny.UI.UIDatetimePicker dtp_et;
- private Sunny.UI.UIDatetimePicker dtp_st;
- private Sunny.UI.UITextBox tb_SFZH;
- private Sunny.UI.UILabel uiLabel9;
- private Sunny.UI.UITitlePanel uiTitlePanel8;
- private Sunny.UI.UITitlePanel uiTitlePanel7;
- private Sunny.UI.UIDataGridView dgv_HISRegInfo;
- private Sunny.UI.UIDataGridView dgv_PrescriptionInfo;
- public Sunny.UI.UIDataGridView dgv_BillInfo;
- private Sunny.UI.UIPanel uiPanel9;
- private Sunny.UI.UIDatetimePicker dtTHSJ;
- private Sunny.UI.UITextBox tbDJBH;
- private Sunny.UI.UITextBox tbJGBM;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label1;
- private Sunny.UI.UIComboBox cbbRYCBLB;
- private Sunny.UI.UIComboBox cbbRYLB;
- private Sunny.UI.UIButton uiButton19;
- private Sunny.UI.UIButton uiButton20;
- private Sunny.UI.UIButton uiButton21;
- public Sunny.UI.UIDataGridView dgv_BillDetailInfo;
- private System.Windows.Forms.TabPage tab5205;
- private Sunny.UI.UITitlePanel uiTitlePanel9;
- private Sunny.UI.UIDataGridView dgv5205;
- private Sunny.UI.UIPanel uiPanel10;
- private Sunny.UI.UIGroupBox uiGroupBox5;
- private Sunny.UI.UIDatetimePicker dptET;
- private Sunny.UI.UIDatetimePicker dptST;
- private Sunny.UI.UIButton btnReadCard;
- private Sunny.UI.UIButton uiButton24;
- private Sunny.UI.UIButton btn5205;
- }
- }
|